| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2021-03-05 | Rollup merge of #82728 - calebsander:refactor/bufreader-buf, r=m-ou-se | Mara | -4/+3 | |
| Avoid unnecessary Vec construction in BufReader As mentioned in #80460, creating a `Vec` and calling `Vec::into_boxed_slice()` emits unnecessary calls to `realloc()` and `free()`. Updated the code to use `Box::new_uninit_slice()` to create a boxed slice directly. I think this also makes it more explicit that the initial contents of the buffer are uninitialized. r? ``@m-ou-se`` | ||||
| 2021-03-03 | Avoid unnecessary Vec construction in BufReader | Caleb Sander | -4/+3 | |
| 2021-01-31 | Remove trailing newline | Xavientois | -2/+3 | |
| 2021-01-31 | Implement SizeHint trait for BufReader, Emtpy, and Chain | Xavientois | -1/+8 | |
| 2021-01-24 | Stabilize `Seek::stream_position` & change feature of `Seek::stream_len` | Lukas Kalbertodt | -1/+0 | |
| 2021-01-17 | Add benchmark and fast path for BufReader::read_exact | Ben Kimock | -0/+14 | |
| 2020-11-05 | document HACKs | Peter Jaszkowiak | -0/+1 | |
| 2020-11-05 | Intra-doc links for std::io::buffered | Peter Jaszkowiak | -1/+1 | |
| 2020-09-10 | Refactor io/buffered.rs into submodules | Nathan West | -0/+423 | |
