summary refs log tree commit diff
path: root/src/libstd
AgeCommit message (Expand)AuthorLines
2013-08-22std: naive stdio print test in uvioJeff Olson-0/+20
2013-08-22std: UvFileStream implements HomingIO + .home_for_io() wrapper usageJeff Olson-39/+60
2013-08-22std: writing to stdout only works when using -1 offset..Jeff Olson-1/+1
2013-08-22std: lint appeasement for unused param in condition handlerJeff Olson-1/+1
2013-08-22std: rework file io.. support [p]read,[p]write, impl seek/tell + more testsJeff Olson-53/+214
2013-08-22std: adding #[fixed_stack_segment] as needed in new uvll callsJeff Olson-0/+16
2013-08-22std: add FileStream::unlink + more testsJeff Olson-2/+52
2013-08-22std: rt::io::file::FileStream fleshed out.. needs more work.. see extendedJeff Olson-40/+127
2013-08-22std: CRUD file io bindings in uvio, fs_open()/unlink() in IoFactory + testJeff Olson-0/+190
2013-08-22std: remove fcntl const bindings + making valgrind clean w/ no owned vecsJeff Olson-142/+68
2013-08-22std: support async/threadpool & sync paths in uv_fs_* calls + add sync testJeff Olson-35/+169
2013-08-22std: add read and unlink to low-level FileDescriptor + end-to-end CRUD testJeff Olson-53/+119
2013-08-22std: working tests for low-level libuv open, write and close operationsJeff Olson-27/+126
2013-08-22std: bootstrapping libuv-based fileio in newrt... open & closeJeff Olson-14/+222
2013-08-22Implement size_hint() on RangeInclusiveKevin Ballard-0/+15
2013-08-22doc: Fix transmute exampleKeegan McAllister-1/+4
2013-08-22auto merge of #8666 : nikomatsakis/rust/issue-3678-extern-fn-types, r=pcwaltonbors-22/+153
2013-08-21auto merge of #8590 : blake2-ppc/rust/std-str, r=alexcrichtonbors-131/+254
2013-08-21std/extra: changing XXX to FIXME; cleanupTim Chevalier-42/+40
2013-08-21Don't fail in port.try_recv() the second time. Close #7800.Ben Blum-6/+13
2013-08-22std::str: Add test for CharIterator .clone()blake2-ppc-0/+8
2013-08-21auto merge of #8445 : Florob/rust/unicode, r=graydonbors-1/+2406
2013-08-21auto merge of #8610 : kballard/rust/mod_floor, r=alexcrichtonbors-2/+15
2013-08-21auto merge of #8604 : kballard/rust/iter-size-hint, r=graydonbors-11/+100
2013-08-21Adjust callbacks in the libraries for the new type of extern fnsNiko Matsakis-22/+153
2013-08-21auto merge of #8602 : sanxiyn/rust/sysconf, r=graydonbors-224/+214
2013-08-21auto merge of #8600 : sfackler/rust/http, r=brsonbors-30/+0
2013-08-21Add support for performing NFD and NFKD on stringsFlorian Zeitz-0/+143
2013-08-21Add canonical combining class to std::unicodeFlorian Zeitz-0/+166
2013-08-21Add Unicode decomposition mappings to std::unicodeFlorian Zeitz-1/+2097
2013-08-21auto merge of #8582 : thestinger/rust/container, r=thestingerbors-158/+221
2013-08-20enable tests for the container tutorialDaniel Micay-3/+3
2013-08-20iterator: add a method for reversing a containerDaniel Micay-2/+30
2013-08-20option: derive Clone/DeepClone for the iteratorDaniel Micay-0/+1
2013-08-20vec: add `shrink_to_fit`Daniel Micay-0/+26
2013-08-20rm obsolete float to_str_radix free functionsDaniel Micay-74/+53
2013-08-20rm obsolete integer to_str{,_radix} free functionsDaniel Micay-81/+57
2013-08-20iterator: add a `range_inclusive` functionDaniel Micay-0/+52
2013-08-20container: inline contains_key default methodDaniel Micay-0/+1
2013-08-20auto merge of #8656 : toddaaro/rust/idle-opt+cleaning, r=brsonbors-14/+17
2013-08-20auto merge of #8631 : anasazi/rust/homing-io, r=brsonbors-348/+679
2013-08-20Fixed a memory leak caused by the singleton idle callback failing to close co...toddaaro-14/+17
2013-08-20small cleanups in task/spawn.rsBen Blum-45/+32
2013-08-20auto merge of #8519 : msullivan/rust/objects, r=catamorphismbors-1/+1
2013-08-20Added home_for_io_with_sched variant. Temporarily making IO unkillable.Eric Reed-124/+165
2013-08-20Add assert_once_ever macro. Close #7748. (fixme cf #8472)Ben Blum-0/+37
2013-08-20Moved .sleep() to Timer.Eric Reed-7/+2
2013-08-20auto merge of #8566 : toddaaro/rust/idle-opt+cleaning, r=catamorphism,brsonbors-302/+386
2013-08-19std: Restore dynamic borrow trackingBrian Anderson-17/+43
2013-08-19Make IO thread-safe.Eric Reed-660/+653