summary refs log tree commit diff
path: root/src/libstd
AgeCommit message (Expand)AuthorLines
2013-09-17std: fix win32 build error in os::env()Jeff Olson-1/+1
2013-09-17std: remove RtioStreamJeff Olson-5/+0
2013-09-17auto merge of #9244 : thestinger/rust/drop, r=catamorphismbors-76/+68
2013-09-16std: merge conflict cleanup from std::strJeff Olson-1/+0
2013-09-16std: docstring fixes in io::fileJeff Olson-239/+259
2013-09-16std: minor cleanup in some io_error descs in io::fileJeff Olson-2/+2
2013-09-16std: lots of docs for std::rt::io::fileJeff Olson-52/+298
2013-09-16std: FsRequest.req_boilerplate() be &mut selfJeff Olson-17/+58
2013-09-16std: remove impl'd/commented-out fstat signaturesJeff Olson-4/+0
2013-09-16std: generlize & move io::file::suppressed_stat to io::ignore_io_errorJeff Olson-19/+19
2013-09-16std: correctly pass STDOUT in to naive_print test fnJeff Olson-1/+1
2013-09-16std: unignore some file io tests that work on windows, nowJeff Olson-6/+0
2013-09-16std: bind uv_fs_readdir(), flesh out DirectoryInfo and docs/cleanupJeff Olson-16/+173
2013-09-16std: expose more stat infoJeff Olson-7/+7
2013-09-16std: more work on from_c_multistring.. let it take an optional len paramJeff Olson-6/+18
2013-09-16std: clean up Dir/FileInfo inheritence and flesh out Dir InfoJeff Olson-59/+129
2013-09-16std: win32 os::env() str parsing to str::raw::from_c_multistring + testJeff Olson-10/+38
2013-09-16std: adding file::{stat,mkdir,rmdir}, FileInfo and FileReader/FileWriterJeff Olson-131/+269
2013-09-16merge cleanupJeff Olson-1/+2
2013-09-16std/rt: in-progress file io workJeff Olson-203/+661
2013-09-16auto merge of #9108 : blake2-ppc/rust/hazards-on-overflow, r=alexcrichtonbors-118/+152
2013-09-16switch Drop to `&mut self`Daniel Micay-76/+68
2013-09-17std::at_vec: Fix segfault on overflow when resizing ~[@T]blake2-ppc-5/+16
2013-09-17rt::io: Use vec::reserve_additionalblake2-ppc-1/+1
2013-09-17std::str: Fix overflow problems in unsafe codeblake2-ppc-105/+59
2013-09-16auto merge of #9211 : klutzy/rust/win32-fix, r=alexcrichtonbors-26/+47
2013-09-16std::str: Add bench tests for StrVector::connect() and for str::push_strblake2-ppc-0/+19
2013-09-16std::vec: Add function vec::bytes::push_bytesblake2-ppc-0/+17
2013-09-16std::vec: Fix hazards with uint overflows in unsafe codeblake2-ppc-6/+29
2013-09-16auto merge of #9192 : Kimundi/rust/master, r=huonwbors-16/+278
2013-09-16Corrected a few small style issuesMarvin Löbel-18/+43
2013-09-16Add an SendStr typeMarvin Löbel-16/+253
2013-09-16std::num: Add uint::next_power_of_two_optblake2-ppc-1/+11
2013-09-15c_str: Add new method .as_str() -> Option<&str>Kevin Ballard-3/+74
2013-09-16std::rt::uv::file: Enable tests on Win32klutzy-2/+0
2013-09-16std::rt::uv::uvio: Enable tests on Win32klutzy-2/+0
2013-09-16std::rt::io::net::tcp: Fix one tcp test on Win32klutzy-2/+7
2013-09-16std::rt::uv::uvll: Fix uv_req_type on Win32klutzy-3/+27
2013-09-16std::os: Use unicode for last_os_error() on Win32klutzy-10/+9
2013-09-16std::rt::io::support: Fix ignored test on Win32klutzy-2/+1
2013-09-15std::rt::io::file: Enable I/O tests on Win32klutzy-5/+3
2013-09-15Remove {uint,int,u64,i64,...}::from_str,from_str_radixblake2-ppc-93/+69
2013-09-15Document all of the format! related macrosAlex Crichton-2/+74
2013-09-15Reduce the amount of complexity in format!Alex Crichton-0/+7
2013-09-15iter: add the edge case tests for `range` tooDaniel Micay-0/+10
2013-09-15rm some uses of the `advance` iterator methodDaniel Micay-2/+2
2013-09-15std::num: Remove `range_step` for each numeric typeblake2-ppc-296/+0
2013-09-15Use std::iter::range_stepblake2-ppc-35/+27
2013-09-15iter: fix `RangeInclusive`'s `DoubleEndedIterator`Daniel Micay-3/+5
2013-09-15iter: fix `range_inclusive` when `start > stop`Daniel Micay-4/+10