about summary refs log tree commit diff
path: root/src/libstd/io/buffered.rs
AgeCommit message (Expand)AuthorLines
2018-11-02Fix compile errors in testJonathan Behrens-9/+9
2018-11-02Suggested editsJonathan Behrens-24/+24
2018-11-02Add some testsJonathan Behrens-11/+20
2018-11-02Add BufWriter::buffer methodJonathan Behrens-0/+19
2018-09-06Fix invalid urlsGuillaume Gomez-4/+2
2018-08-19Fix typos found by codespell.Matthias Krüger-1/+1
2018-07-30Remove unstable and deprecated APIsSimon Sapin-46/+0
2018-07-26State default capacity for BufReader/BufWriterJonathan Behrens-2/+4
2018-07-11simplify assertionsAndy Russell-5/+4
2018-07-08rework `LineWriter` exampleAndy Russell-10/+24
2018-04-15Deprecate Read::chars and char::decode_utf8Simon Sapin-0/+2
2018-04-05Rollup merge of #49594 - mbrubeck:docs, r=steveklabnikkennytm-0/+12
2018-04-03Add performance notes to BufReader/BufWriter docsMatt Brubeck-0/+12
2018-04-02Fix typoRolf van de Krol-1/+1
2018-03-28Remove hidden `foo` functions from doc examples; use `Termination` trait.Corey Farwell-109/+110
2018-03-18Add BufReader::bufferSteven Fackler-1/+29
2018-02-17fix more typos found by codespell.Matthias Krüger-1/+1
2018-01-15Rollup merge of #47330 - bmusin:patch-2, r=shepmasterkennytm-4/+4
2018-01-14Auto merge of #46832 - Diggsey:bufread-cheaper-seek, r=alexcrichtonbors-0/+46
2018-01-13Add note to documentationDiggory Blake-0/+4
2018-01-13Implement "seek_relative"Diggory Blake-0/+42
2018-01-13fix off-by-one errorBulat Musin-4/+4
2018-01-02Document when LineWriter flushes; document errors for into_inner.Corey Farwell-0/+11
2017-12-21docs: do not call integer overflows as underflowsTrevor Spiteri-1/+1
2017-10-18Implement is_empty() for BufReaderJonathan Behrens-0/+25
2017-08-15use field init shorthand EVERYWHEREZack M. Davis-1/+1
2017-07-20Remove mut where possibleEvan Cameron-10/+10
2017-07-09Add warning to BufWriter documentationJohn Gallagher-1/+5
2017-06-20Add `Read::initializer`.Steven Fackler-6/+16
2017-04-06Fix Markdown issues in the docsOliver Middleton-8/+9
2017-01-22libstd: replace all `try!` with `?` in documentation examplesUtkarsh Kukreti-16/+16
2016-11-28std: Fix partial writes in LineWriterAlex Crichton-13/+86
2016-11-10Remove one bounds check from BufReaderArthur Silva-1/+4
2016-10-14Rollup merge of #37115 - GuillaumeGomez:buf_reader_urls, r=kmcallisterJonathan Turner-5/+13
2016-10-12add missing urls for BufWriter and BufReaderGuillaume Gomez-5/+13
2016-10-12Deprecate `Reflect`Nick Cameron-2/+1
2016-10-05Fixed small typo in `BufRead` commentsRazican-1/+1
2016-09-30Ignore lots and lots of std tests on emscriptenBrian Anderson-0/+1
2016-09-21Fix outdated Doc Comment on BufReader::seekChristopher Serr-2/+2
2016-09-11Remove unnecessary `cmp::min` from BufWriter::writeRichard Janis Goldschmidt-2/+1
2016-08-24Use `#[prelude_import]` in `libstd`.Jeffrey Seyfried-2/+0
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