summary refs log tree commit diff
path: root/src/libstd/io
AgeCommit message (Expand)AuthorLines
2014-02-03std: Fixing all documentationAlex Crichton-303/+245
2014-02-03std: Fix tests with io_error usageAlex Crichton-646/+531
2014-02-03std: Remove io::io_errorAlex Crichton-802/+630
2014-02-02std: rename fmt::Default to `Show`.Huon Wilson-1/+1
2014-02-01Optimize u64_to_{le,be}_bytesBjörn Steinbrink-28/+14
2014-01-31Fix minor doc typosVirgile Andreani-1/+1
2014-01-31auto merge of #11918 : omasanori/rust/reduce-warnings, r=alexcrichtonbors-8/+4
2014-01-29auto merge of #11672 : bjz/rust/remove-times, r=brsonbors-10/+10
2014-01-30Remove Times traitBrendan Zabarauskas-10/+10
2014-01-29auto merge of #11893 : Armavica/rust/copyable-cloneable, r=huonwbors-3/+3
2014-01-30Prefix _ to unused variables.OGINO Masanori-4/+4
2014-01-30Remove unused imports.OGINO Masanori-4/+0
2014-01-29auto merge of #11754 : alexcrichton/rust/unused-result, r=brsonbors-3/+3
2014-01-29Flag Result as #[must_use] and deal with fallout.Alex Crichton-3/+3
2014-01-29Removing do keyword from libstd and librustcScott Lawrence-80/+80
2014-01-28Rename OwnedCopyableVector to OwnedCloneableVectorVirgile Andreani-2/+2
2014-01-28Rename CopyableVector to CloneableVectorVirgile Andreani-1/+1
2014-01-28auto merge of #11845 : xales/rust/libnative, r=alexcrichtonbors-0/+40
2014-01-27Set SO_REUSEADDR by default in libnative.xales-0/+40
2014-01-27Demote self to an (almost) regular argument and remove the env param.Eduard Burtescu-1/+1
2014-01-26Removed all instances of XXX in preparation for relaxing of FIXME ruleSalem Talha-16/+16
2014-01-25auto merge of #11808 : huonw/rust/std-visible-types, r=brsonbors-1/+1
2014-01-26std,extra: Make some types public and other private.Huon Wilson-1/+1
2014-01-25Uppercase numeric constantsChris Wong-13/+13
2014-01-24auto merge of #11732 : luqmana/rust/native-getaddrinfo, r=alexcrichtonbors-5/+11
2014-01-24libstd: Use iotest! for for get_host_addresses.Luqman Aden-5/+11
2014-01-22Implement native timersAlex Crichton-29/+146
2014-01-21[std::str] Rename from_utf8_owned_opt() to from_utf8_owned(), drop the old fr...Simon Sapin-3/+3
2014-01-21[std::str] Rename from_utf8_opt() to from_utf8(), drop the old from_utf8() be...Simon Sapin-9/+9
2014-01-21[std::vec] Rename .shift_opt() to .shift(), drop the old .shift() behaviorSimon Sapin-2/+2
2014-01-21[std::vec] Rename .pop_opt() to .pop(), drop the old .pop() behaviorSimon Sapin-2/+5
2014-01-21Remove unnecessary parentheses.Huon Wilson-1/+1
2014-01-18Rename iterators for consistencyPalmer Cox-21/+21
2014-01-17auto merge of #11598 : alexcrichton/rust/io-export, r=brsonbors-91/+134
2014-01-17Tweak the interface of std::ioAlex Crichton-91/+134
2014-01-15Issue #3511 - Rationalize temporary lifetimes.Niko Matsakis-9/+11
2014-01-15auto merge of #11112 : alexcrichton/rust/issue-11087, r=brsonbors-4/+4
2014-01-15Allow more "error" values in try_recv()Alex Crichton-4/+4
2014-01-14Mark LineIterator as public so its docs get generated.a_m0d-1/+1
2014-01-14auto merge of #11485 : eddyb/rust/sweep-old-rust, r=nikomatsakisbors-3/+3
2014-01-13std: Ignore bind error tests on android. #11530Brian Anderson-2/+4
2014-01-12Removed remnants of `@mut` and `~mut` from comments and the type system.Eduard Burtescu-3/+3
2014-01-10auto merge of #11416 : bjz/rust/remove-print-fns, r=alexcrichtonbors-4/+4
2014-01-11Remove re-exports of std::io::stdio::{print, println} in the prelude.Brendan Zabarauskas-4/+4
2014-01-10std::io: Optimize u64_from_be_bytes()Carl-Anton Ingmarsson-11/+19
2014-01-10std::io: Add tests and benchmarks for u64_from_be_bytes()Carl-Anton Ingmarsson-0/+82
2014-01-09Add eof to MemReader and BufReaderSteven Fackler-2/+12
2014-01-09Remove eof() from io::ReaderAlex Crichton-142/+18
2014-01-08Remove the io::Decorator traitAlex Crichton-192/+118
2014-01-08Robustly read remaining bytes in a characterAlex Crichton-4/+16