about summary refs log tree commit diff
path: root/src/libstd/io/buffered.rs
AgeCommit message (Expand)AuthorLines
2016-05-09Utilize `Result::unwrap_err` in more places.Corey Farwell-1/+1
2016-03-22try! -> ?Jorge Aparicio-9/+9
2016-03-07Add test case for #32085Steven Allen-0/+28
2016-03-07Never return an error after a partial writeSteven Allen-2/+4
2016-01-26Fix warnings during testsAlex Crichton-2/+2
2016-01-22Auto merge of #31070 - sfackler:bufreader-box-slice, r=alexcrichtonbors-2/+2
2016-01-20Use a Box<[u8]> in BufReaderSteven Fackler-2/+2
2016-01-20Don't flush in BufWriter destructor after a panic in writeSteven Fackler-3/+40
2016-01-12Remove dead `InternalBufWriter` implementationAndrea Canciani-15/+0
2015-12-29Fix warnings when compiling stdlib with --testFlorian Hahn-1/+1
2015-12-18Use memchr in libstd where possible, closes #30076Florian Hahn-1/+2
2015-11-18Add missing annotations and some testsVadim Petrochenkov-0/+1
2015-10-08typos: fix a grabbag of typos all over the placeCristi Cobzarenco-1/+1
2015-08-12Remove all unstable deprecated functionalityAlex Crichton-148/+1
2015-07-29Rollup merge of #27341 - steveklabnik:remove_warning, r=alexcrichtonSteve Klabnik-4/+0
2015-07-27Remove warning header for consistencySteve Klabnik-4/+0
2015-07-27std: Deprecate a number of unstable featuresAlex Crichton-1/+1
2015-07-22Rollup merge of #27170 - steveklabnik:doc_std_io_intoinnererror, r=alexcrichtonSteve Klabnik-1/+73
2015-07-22Rollup merge of #27166 - steveklabnik:doc_std_io_linewriter, r=alexcrichtonSteve Klabnik-3/+120
2015-07-22Improve documentation for std::io::LineWriterSteve Klabnik-3/+120
2015-07-22Improve documentation for std::io::BufWriterSteve Klabnik-5/+97
2015-07-21Expand documentation for IntoInnerErrorSteve Klabnik-1/+73
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