| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-11-09 | Move `BorrowedBuf` and `BorrowedCursor` from `std:io` to `core::io` | John Millikin | -318/+0 | |
| Assigned new feature name `core_io_borrowed_buf` to distinguish from the `Read::read_buf` functionality in `std::io`. | ||||
| 2023-09-01 | don't panic in BorrowedCursor::write | Zachary S | -2/+3 | |
| 2023-07-28 | inline trivial (noop) flush calls | Thom Chiovoloni | -0/+1 | |
| 2022-10-29 | Add BorrowedBuf::filled_mut | Alex Saveau | -0/+7 | |
| Signed-off-by: Alex Saveau <saveau.alexandre@gmail.com> | ||||
| 2022-10-08 | use memset to initialize a readbuf | The 8472 | -3/+6 | |
| 2022-08-18 | Address reviewer comments | Nick Cameron | -23/+42 | |
| Signed-off-by: Nick Cameron <nrc@ncameron.org> | ||||
| 2022-08-05 | non-linux platforms | Nick Cameron | -50/+57 | |
| Signed-off-by: Nick Cameron <nrc@ncameron.org> | ||||
| 2022-08-04 | Add some docs for BorrowBuf | Nick Cameron | -24/+60 | |
| Signed-off-by: Nick Cameron <nrc@ncameron.org> | ||||
| 2022-08-04 | std::io: migrate ReadBuf to BorrowBuf/BorrowCursor | Nick Cameron | -124/+119 | |
| Signed-off-by: Nick Cameron <nrc@ncameron.org> | ||||
| 2022-05-03 | std::io: Modify some ReadBuf method signatures to return `&mut Self` | Nick Cameron | -7/+11 | |
| This allows using `ReadBuf` in a builder-like style and to setup a `ReadBuf` and pass it to `read_buf` in a single expression, e.g., ``` // With this PR: reader.read_buf(ReadBuf::uninit(buf).assume_init(init_len))?; // Previously: let mut buf = ReadBuf::uninit(buf); buf.assume_init(init_len); reader.read_buf(&mut buf)?; ``` Signed-off-by: Nick Cameron <nrc@ncameron.org> | ||||
| 2021-12-26 | fix typo: intialized -> initialized | Hiroshi Kori | -2/+2 | |
| 2021-12-07 | correct typo | DrMeepster | -1/+1 | |
| Co-authored-by: Josh Triplett <josh@joshtriplett.org> | ||||
| 2021-11-02 | implement review suggestions | DrMeepster | -5/+5 | |
| 2021-11-02 | read_buf | DrMeepster | -0/+245 | |
