about summary refs log tree commit diff
path: root/src/libstd/io/buffered.rs
AgeCommit message (Expand)AuthorLines
2015-07-14Use Vec::drain in BufWriterUlrik Sverdrup-8/+1
2015-07-10More docs for std::io::BufReaderSteve Klabnik-4/+77
2015-07-08Auto merge of #26849 - bluss:read-to-end-memset, r=alexcrichtonbors-4/+1
2015-07-08io: Simplify BufReader::with_capacityUlrik Sverdrup-4/+1
2015-07-05std: small doc fixes for BufReader and BufWriterGeorg Brandl-8/+8
2015-06-17More test fixes and fallout of stability changesAlex Crichton-0/+5
2015-06-17std: Deprecate the io::BufStream typeAlex Crichton-0/+4
2015-05-19Add example code and cross-link to BufReader docsMatt Brubeck-0/+18
2015-05-05Auto merge of #25009 - alexcrichton:less-buffered-stream, r=aturonbors-10/+18
2015-05-01Auto merge of #25006 - alexcrichton:unstable-indexing, r=aturonbors-3/+3
2015-05-01std: Remove index notation on slice iteratorsAlex Crichton-3/+3
2015-04-30Add downcasting to std::error::ErrorAaron Turon-1/+2
2015-04-30std: Destabilize io::BufStreamAlex Crichton-10/+18
2015-04-28Register new snapshotsTamir Duberstein-1/+0
2015-04-21Model lexer: Fix remaining issuesPiotr Czarnecki-2/+0
2015-04-08Implement io::Seek for io::BufWriter<W> where W: io::SeekKevin Ballard-0/+22
2015-04-08Implement io::Seek for io::BufReader<R> where R: io::SeekKevin Ballard-2/+109
2015-03-31Test fixes and rebase conflicts, round 3Alex Crichton-22/+22
2015-03-31rollup merge of #23919: alexcrichton/stabilize-io-errorAlex Crichton-1/+1
2015-03-31std: Stabilize last bits of io::ErrorAlex Crichton-1/+1
2015-03-31rollup merge of #23879: seanmonstar/del-from-errorAlex Crichton-3/+3
2015-03-30convert: remove FromError, use From<E> insteadSean McArthur-3/+3
2015-03-30std: Standardize (input, output) param orderingsAlex Crichton-2/+2
2015-03-28Fix massive performance issue in read_to_endSteven Fackler-28/+43
2015-03-27rollup merge of #23741: alexcrichton/remove-int-uintAlex Crichton-2/+2
2015-03-26syntax: Remove support for #[should_fail]Alex Crichton-1/+1
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-2/+2
2015-03-24Added `Write` bounds to avoid a specialized Drop impl for `BufWriter`.Felix S. Klock II-9/+9
2015-03-23Stabilize the Error traitAaron Turon-1/+1
2015-03-18Fixed-size byte string literals (RFC 339)Vadim Petrochenkov-2/+2
2015-03-17std::io::buffered: Don't use 'flush' in documentation of into_innerMikhail Zabaluev-14/+15
2015-03-13Fallout of std::old_io deprecationAlex Crichton-0/+1
2015-03-12std: Stabilize the `io` moduleAlex Crichton-10/+57
2015-03-05Remove integer suffixes where the types in compiled code are identical.Eduard Burtescu-2/+2
2015-02-25Rollup merge of #22729 - alexcrichton:ptr-stabilization, r=aturonManish Goregaokar-3/+3
2015-02-24std: Stabilize some `ptr` functionsAlex Crichton-3/+3
2015-02-24std::io::BufReader: remove leftover lifetime parameter on get_ref()Mikhail Zabaluev-1/+1
2015-02-20try to reduce bajillion warningsAlexis-4/+3
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-2/+2
2015-02-03std: Add `io` module againAlex Crichton-0/+676
2015-01-26std: Rename io to old_ioAlex Crichton-697/+0
2015-01-21rollup merge of #21258: aturon/stab-3-indexAlex Crichton-1/+1
2015-01-21rollup merge of #21457: alexcrichton/issue-21436Alex Crichton-4/+8
2015-01-21Fallout from stabilization.Aaron Turon-1/+1
2015-01-20std: Rename Show/String to Debug/DisplayAlex Crichton-4/+8
2015-01-19remove unnecessary parentheses from range notationJorge Aparicio-2/+2
2015-01-14auto merge of #21076 : sfackler/rust/bufferedreader-undef, r=Gankrobors-11/+10
2015-01-12Initialize memory for BufferedReader bufferSteven Fackler-11/+10
2015-01-12cleanup: `&foo[0..a]` -> `&foo[..a]`Jorge Aparicio-3/+3
2015-01-10Implement Show for types in std::io::{buffered,util}Steven Fackler-0/+33