summary refs log tree commit diff
path: root/library/std/src/io/buffered
AgeCommit message (Expand)AuthorLines
2023-11-19Rollup merge of #116750 - fintelia:seek_seek_relative, r=Mark-SimulacrumTakayuki Maeda-0/+10
2023-10-20Specialize `Bytes<R>::next` when `R` is a `BufReader`.Nicholas Nethercote-5/+20
2023-10-14Add Seek::seek_relativeJonathan Behrens-0/+10
2023-09-03Use std::io::Error::is_interrupted everywhereBen Kimock-1/+1
2023-07-06Rollup merge of #112008 - intruder-kat:master, r=NilstriebMichael Goulet-2/+2
2023-06-17Extend io::copy buffer reuse to BufReader tooThe 8472-1/+1
2023-05-26Fix incorrect documented default bufsize in bufreader/writerKathryn R-2/+2
2023-05-01Relax implicit `W: Sized` bound on `LineWriter<W>`Maybe Waffle-27/+29
2023-05-01Relax implicit `W: Sized` bound on `BufWriter<W>`Maybe Waffle-68/+70
2023-05-01Relax implicit `R: Sized` bound on `BufReader<R>`Maybe Waffle-12/+15
2023-04-26rewrite: line_long_tail_not_flushed descriptionJosh Soref-3/+4
2023-04-26rewrite: long_line_flushed descriptionJosh Soref-3/+3
2023-04-06Remove an unnecessary `mut` in `BufWriter::into_parts`.管唯宇-1/+1
2023-01-14Remove various double spaces in source comments.André Vennberg-2/+2
2022-10-06Avoid defensive re-initialization of the BufReader bufferBen Kimock-3/+48
2022-08-18Address reviewer commentsNick Cameron-3/+3
2022-08-05non-linux platformsNick Cameron-12/+17
2022-08-04std::io: migrate ReadBuf to BorrowBuf/BorrowCursorNick Cameron-23/+24
2022-07-26Add Buffer::consume_with to enable direct buffer access with one checkBen Kimock-3/+18
2022-07-24Rename and document the new BufReader internalsBen Kimock-29/+33
2022-07-24Allow Buffer methods to inlineBen Kimock-0/+9
2022-07-24Remove some redundant checks from BufReaderBen Kimock-53/+106
2022-06-19Fix documentation for with_capacity and reserve families of methodsjmaargh-4/+4
2022-03-10Use implicit capture syntax in format_argsT-O-R-U-S-1/+1
2022-02-04Hide Repr details from io::Error, and rework `io::Error::new_const`.Thom Chiovoloni-5/+5
2022-01-09Compute most of Public/Exported access level in rustc_resolveLamb-4/+4
2021-11-02implement review suggestionsDrMeepster-1/+1
2021-11-02consolidate 2 unsafe blocks into 1DrMeepster-2/+2
2021-11-02read_bufDrMeepster-17/+94
2021-10-11Auto merge of #89755 - jkugelman:must-use-conversions-that-move-self, r=josht...bors-0/+1
2021-10-10Add #[must_use] to conversions that move selfJohn Kugelman-0/+1
2021-10-09Apply clippy suggestionsClemens Wasser-6/+5
2021-10-07Optimize File::read_to_end and read_to_stringJohn Kugelman-0/+67
2021-09-25Auto merge of #88343 - steffahn:fix_code_spacing, r=jyn514bors-5/+5
2021-09-25Apply 16 commits (squashed)Frank Steffahn-5/+5
2021-09-09Ignore automatically derived impls of `Clone` and `Debug` in dead code analysisFabian Wolff-4/+0
2021-08-24Stabilise BufWriter::into_partsIan Jackson-9/+7
2021-07-29Rename feature gate bufwriter_into_parts from bufwriter_into_raw_partsIan Jackson-9/+9
2021-07-29BufWriter: rename `into_parts` from `into_raw_parts`Ian Jackson-6/+6
2021-07-29BufWriter: actually export WriterPanicked errorIan Jackson-0/+2
2021-07-24Rollup merge of #87175 - inquisitivecrystal:inner-error, r=kennytmYuki Okushi-4/+2
2021-07-22Remove Option from BufWriterAlex Macleod-10/+14
2021-07-15Stabilize `into_parts()` and `into_error()`inquisitivecrystal-4/+2
2021-06-10Specialize `io::Bytes::size_hint` for more typesBenoît du Garreau-1/+7
2021-05-14Move `std::memchr` to `sys_common`Christiaan Dirkx-1/+1
2021-04-13BufWriter: improve safety commentTyson Nottingham-6/+10
2021-04-13BufWriter: simplify buffer drainingTyson Nottingham-5/+1
2021-04-13BufWriter: use #[cold] and less aggressive #[inline] hintsTyson Nottingham-1/+3
2021-04-13BufWriter: handle possibility of overflowTyson Nottingham-15/+39
2021-04-13BufWriter: optimize for write sizes less than buffer sizeTyson Nottingham-24/+32