summary refs log tree commit diff
path: root/src/libstd
AgeCommit message (Expand)AuthorLines
2013-12-16vec: make the move iterator fast for all typesDaniel Micay-50/+47
2013-12-15Register new snapshotsAlex Crichton-9/+1
2013-12-15libstd: Fix merge fallout.Patrick Walton-1/+1
2013-12-15librustc: Remove identifiers named `box`, since it's about to become a keyword.Patrick Walton-70/+75
2013-12-15auto merge of #10984 : huonw/rust/clean-raw, r=cmrbors-211/+158
2013-12-15std::vec: convert to(_mut)_ptr to as_... methods on &[] and &mut [].Huon Wilson-59/+68
2013-12-15Move std::{str,vec}::raw::set_len to an unsafe method on Owned{Vector,Str}.Huon Wilson-59/+61
2013-12-15std::vec: move pointless `raw::get` and `unsafe_get` functions.Huon Wilson-20/+4
2013-12-15std::vec::raw: clean up docs.Huon Wilson-4/+6
2013-12-15std::vec::bytes: remove obsolete functions.Huon Wilson-44/+2
2013-12-15std::vec: remove unnecessary count parameter on {bytes,Huon Wilson-28/+20
2013-12-15std::rt: s/pausible/pausable/.Huon Wilson-18/+18
2013-12-15std: fix spelling in docs.Huon Wilson-50/+51
2013-12-14auto merge of #10936 : cadencemarseille/rust/issue-10754-std-run-unwrap-on-No...bors-27/+52
2013-12-14auto merge of #10870 : ktt3ja/rust/issue-10865, r=alexcrichtonbors-0/+1
2013-12-14Fix #10754 - `std::run` functions fail after io_errorCadence Marseille-27/+52
2013-12-14auto merge of #10949 : fabricedesre/rust/no-gnustl, r=cmrbors-1/+0
2013-12-15Rename To{Str,Bytes}Consume traits to Into*.Chris Morgan-7/+7
2013-12-14Remove {As,Into,To}{Option,Either,Result} traits.Chris Morgan-441/+0
2013-12-14Dead-code pass now marks and warns foreign itemsKiet Tran-0/+1
2013-12-13auto merge of #10918 : eddyb/rust/inline-finally-dtor, r=thestingerbors-0/+56
2013-12-13auto merge of #10895 : sfackler/rust/io-util, r=alexcrichtonbors-0/+298
2013-12-12Remove dependency on gnustl_shared for android buildsFabrice Desré-1/+0
2013-12-12Inline Finallyalizer::drop, allowing LLVM to optimize `finally`.Eduard Burtescu-0/+56
2013-12-11Add std::io::utilSteven Fackler-0/+298
2013-12-11Make 'self lifetime illegal.Erik Price-555/+555
2013-12-11std::io: Add Buffer.lines(), change .bytes() apiklutzy-52/+136
2013-12-10auto merge of #10791 : pcwalton/rust/decelling, r=pcwaltonbors-741/+683
2013-12-10libstd: Remove `Cell` from the library.Patrick Walton-74/+19
2013-12-10Make crate hash stable and externally computable.Jack Moffitt-5/+5
2013-12-10libstd: Remove two uses of `Cell`.Patrick Walton-6/+4
2013-12-10libstd: Change `atomically` to use RAII.Patrick Walton-54/+78
2013-12-10librustuv: Change `with_local_io` to use RAII.Patrick Walton-156/+181
2013-12-10libstd: Remove `Cell`s that were used because of `finally` by convertingPatrick Walton-41/+63
2013-12-10librustpkg: Make `io::ignore_io_error()` use RAII; remove a few morePatrick Walton-21/+37
2013-12-10libstd: Remove some cells involved inPatrick Walton-18/+12
2013-12-10librustuv: RAII-ify `Local::borrow`, and remove some 12 Cells.Patrick Walton-159/+181
2013-12-10libextra: Another round of de-`Cell`-ing.Patrick Walton-228/+124
2013-12-10Implement PortReader and ChanWriterRaphael Speyer-11/+172
2013-12-09auto merge of #10840 : cmr/rust/any_docs2, r=huonwbors-1/+8
2013-12-09Add some Any docs.Corey Richardson-1/+8
2013-12-09auto merge of #10859 : huonw/rust/helper-dists, r=cmrbors-246/+568
2013-12-08std::rand: implement the student t distribution.Huon Wilson-1/+52
2013-12-08std::rand: implement the F distribution.Huon Wilson-1/+60
2013-12-08std::rand: implement the chi-squared distribution.Huon Wilson-2/+99
2013-12-08Remove dead codesKiet Tran-165/+38
2013-12-07std::rand: implement the log-normal distribution.Huon Wilson-2/+58
2013-12-07std::rand: move normal and exponential to their own file.Huon Wilson-244/+303
2013-12-07auto merge of #10824 : huonw/rust/str-doc, r=alexcrichtonbors-42/+321
2013-12-06auto merge of #10364 : Kimundi/rust/result_compose, r=alexcrichtonbors-125/+44