about summary refs log tree commit diff
path: root/src/libstd/io/flate.rs
AgeCommit message (Collapse)AuthorLines
2014-05-15std: Delete unused fileBrian Anderson-52/+0
2014-01-09Remove eof() from io::ReaderAlex Crichton-2/+0
2014-01-08Remove the io::Decorator traitAlex Crichton-69/+0
This is just an unnecessary trait that no one's ever going to parameterize over and it's more useful to just define the methods directly on the types themselves. The implementors of this type almost always don't want inner_mut_ref() but they're forced to define it as well.
2013-12-04std::str: s/from_utf8_slice/from_utf8/, to make the basic case shorter.Huon Wilson-1/+1
2013-12-04std::str: remove from_utf8.Huon Wilson-3/+3
This function had type &[u8] -> ~str, i.e. it allocates a string internally, even though the non-allocating version that take &[u8] -> &str and ~[u8] -> ~str are all that is necessary in most circumstances.
2013-11-11Move std::rt::io to std::ioAlex Crichton-0/+123