about summary refs log tree commit diff
path: root/src/libstd/io/mem.rs
AgeCommit message (Expand)AuthorLines
2014-10-07Rename slice::SliceNick Cameron-1/+1
2014-10-07Use slice syntax instead of slice_to, etc.Nick Cameron-11/+11
2014-10-02Revert "Use slice syntax instead of slice_to, etc."Aaron Turon-11/+11
2014-10-02Use slice syntax instead of slice_to, etc.Nick Cameron-11/+11
2014-09-16Fallout from renamingAaron Turon-4/+4
2014-08-26Use temp vars for implicit coercion to ^[T]Nick Cameron-13/+25
2014-08-13std: Rename slice::Vector to SliceBrian Anderson-1/+1
2014-08-13std: Rename various slice traits for consistencyBrian Anderson-1/+1
2014-07-29std: Make MemWriter clonableErick Tryzelaar-0/+1
2014-07-29remove seek from std::io::MemWriter, add SeekableMemWriter to librustcErick Tryzelaar-71/+6
2014-07-21Add a ton of ignore-lexer-testCorey Richardson-0/+2
2014-07-11Allow writes of length 0 to a full bufferArjan Topolovec-2/+4
2014-07-09auto merge of #15471 : erickt/rust/push_all, r=acrichtobors-5/+49
2014-07-08std: Rename the `ToStr` trait to `ToString`, and `to_str` to `to_string`.Richo Healey-3/+3
2014-07-05std: flesh out MemWriter benchmarksErick Tryzelaar-5/+49
2014-06-24librustc: Remove the fallback to `int` from typechecking.Niko Matsakis-4/+4
2014-06-21std: inline many of the Writer/Reader methodsErick Tryzelaar-0/+90
2014-06-18Deprecate the bytes!() macro.Simon Sapin-2/+2
2014-06-11rustc: Remove ~[T] from the languageAlex Crichton-3/+3
2014-06-08core: Rename `container` mod to `collections`. Closes #12543Brian Anderson-1/+1
2014-05-27std: Rename strbuf operations to stringRicho Healey-2/+2
2014-05-22libstd: Remove `~str` from all `libstd` modules except `fmt` and `str`.Patrick Walton-2/+2
2014-05-16rustc: Stop leaking enum variants into childrenAlex Crichton-3/+3
2014-05-13io: Add .read_at_least() to ReaderKevin Ballard-6/+6
2014-05-02Replace most ~exprs with 'box'. #11779Brian Anderson-1/+1
2014-04-18Replace all ~"" with "".to_owned()Richo Healey-2/+3
2014-04-18std: Make ~[T] no longer a growable vectorAlex Crichton-1/+1
2014-04-14Use new attribute syntax in python files in src/etc too (#13478)Manish Goregaokar-4/+4
2014-04-08Update an obsolete comment about conditionsSimon Sapin-1/+1
2014-04-06De-~[] Mem{Reader,Writer}Steven Fackler-13/+14
2014-04-06De-~[] Reader and WriterSteven Fackler-6/+6
2014-03-31std: Switch field privacy as necessaryAlex Crichton-8/+8
2014-03-22std: Add an I/O reader method to fill a bufferAlex Crichton-2/+16
2014-03-20rename std::vec -> std::sliceDaniel Micay-7/+7
2014-02-28std: Change assert_eq!() to use {} instead of {:?}Alex Crichton-14/+14
2014-02-28std: Improve some I/O documentationAlex Crichton-0/+2
2014-02-20Mass rename if_ok! to try!Alex Crichton-4/+4
2014-02-11Finalize the Seek APIAlex Crichton-26/+73
2014-02-08Fix infinite loop in BufReader::read_until.Q.P.Liu-1/+9
2014-02-08Fix infinite loop in MemReader::read_until.Q.P.Liu-1/+9
2014-02-03std: Fixing all documentationAlex Crichton-4/+8
2014-02-03std: Fix tests with io_error usageAlex Crichton-77/+74
2014-02-03std: Remove io::io_errorAlex Crichton-27/+34
2014-01-28Rename OwnedCopyableVector to OwnedCloneableVectorVirgile Andreani-1/+1
2014-01-17auto merge of #11598 : alexcrichton/rust/io-export, r=brsonbors-21/+52
2014-01-17Tweak the interface of std::ioAlex Crichton-21/+52
2014-01-15Issue #3511 - Rationalize temporary lifetimes.Niko Matsakis-2/+4
2014-01-09Add eof to MemReader and BufReaderSteven Fackler-2/+12
2014-01-09Remove eof() from io::ReaderAlex Crichton-10/+2
2014-01-08Remove the io::Decorator traitAlex Crichton-21/+30