about summary refs log tree commit diff
path: root/src/libstd
AgeCommit message (Expand)AuthorLines
2013-11-21`std::ptr::read_ptr` now takes `*T` instead of `*mut T`Ziad Hatahet-3/+3
2013-11-20auto merge of #10576 : thestinger/rust/gc, r=pcwaltonbors-0/+100
2013-11-19add an initial `Gc<T>` stub with the APIDaniel Micay-0/+100
2013-11-19Remove NonCopyable::newSteven Fackler-6/+0
2013-11-19libstd: Change all uses of `&fn(A)->B` over to `|A|->B` in libstdPatrick Walton-236/+270
2013-11-19auto merge of #10495 : alexcrichton/rust/more-native-io, r=brsonbors-651/+1054
2013-11-19Implement more native file I/OAlex Crichton-651/+1054
2013-11-19auto merge of #10558 : alexcrichton/rust/faster-stdout, r=pcwalton,pcwaltonbors-0/+2
2013-11-19auto merge of #10542 : huonw/rust/open01, r=alexcrichtonbors-39/+122
2013-11-18auto merge of #10561 : pcwalton/rust/procify, r=alexcrichtonbors-82/+92
2013-11-18Move runtime files to C instead of C++Alex Crichton-0/+1
2013-11-18Remove the C++ lock_and_signal typeAlex Crichton-94/+90
2013-11-18Implement a native mutex typeAlex Crichton-0/+337
2013-11-18libstd: Change all `~fn()`s to `proc`s in the standard library.Patrick Walton-82/+92
2013-11-18Allow piped stdout/stderr use uv_tty_tAlex Crichton-0/+2
2013-11-18rt: Namespace all C functions under rust_Brian Anderson-8/+8
2013-11-18std::rand: wrappers for floats from [0,1] and (0,1).Huon Wilson-39/+122
2013-11-17Fixed docs for advance() in Iterator traitAndrei Formiga-6/+3
2013-11-17Fixed uses of get() to unwrap() in doc examples in std::iterAndrei Formiga-28/+28
2013-11-17auto merge of #10466 : alexcrichton/rust/issue-10334, r=cmrbors-102/+157
2013-11-16auto merge of #10420 : sanxiyn/rust/path, r=cmrbors-1/+1
2013-11-16Implement read_char on the Buffer traitAlex Crichton-0/+43
2013-11-14remove `cast::unsafe_copy`Daniel Micay-8/+0
2013-11-14auto merge of #10428 : toffaletti/rust/try_lock, r=alexcrichtonbors-1/+16
2013-11-14test: Fix signal-exit-status on windowsklutzy-0/+1
2013-11-13auto merge of #10457 : alexcrichton/rust/native-io, r=brsonbors-350/+434
2013-11-13Implement native::IoFactoryAlex Crichton-350/+434
2013-11-13add rust_trylock_little_lockJason Toffaletti-1/+16
2013-11-13auto merge of #10451 : zkamsler/rust/buf_writer, r=alexcrichtonbors-10/+99
2013-11-13Introduce an io::Buffer traitAlex Crichton-102/+114
2013-11-13Implemented BufWriterZach Kamsler-10/+99
2013-11-12io: benchmarks for creation of the various Buffered objectsCorey Richardson-0/+42
2013-11-12auto merge of #10423 : alexcrichton/rust/move-io, r=pcwaltonbors-141/+152
2013-11-12auto merge of #10435 : jayanderson/rust/docs, r=huonwbors-2/+131
2013-11-11Move std::rt::io to std::ioAlex Crichton-141/+152
2013-11-11Use constants instead of raw values.Jay Anderson-4/+2
2013-11-11auto merge of #10424 : alexcrichton/rust/optimize-buffered, r=brsonbors-2/+13
2013-11-11Got directions backwards in to_degrees and to_radians docs.Jay Anderson-2/+2
2013-11-11Add docs for traits Exponential, Hyperbolic, BitCount.Jay Anderson-2/+44
2013-11-11Update docs for Fractional, Algebraic, Round, and Trigonometric traits.Jay Anderson-0/+89
2013-11-12Implemented a ProcessExit enum and helper methods to std::rt::io::process for...Matthew Iselin-16/+56
2013-11-11auto merge of #10407 : alexcrichton/rust/no-fixed-stack-segment, r=brsonbors-230/+42
2013-11-11Decrease the default stack size back to 2MBAlex Crichton-1/+1
2013-11-11Remove #[fixed_stack_segment] and #[rust_stack]Alex Crichton-229/+41
2013-11-11Optimize creation of buffered readers/writersAlex Crichton-2/+13
2013-11-11auto merge of #10417 : cmr/rust/vec_overflow, r=huonwbors-1/+5
2013-11-11auto merge of #10409 : alexcrichton/rust/issue-10386, r=brsonbors-1/+5
2013-11-11auto merge of #10394 : yichoi/rust/make_check_pass_android, r=brsonbors-102/+12
2013-11-11Fix path parsingSeo Sanghyeon-1/+1
2013-11-11Implement `size_hint` for RangeCorey Richardson-8/+80