(&mut self, pos: usize)
| 70 | #[inline(always)] |
| 71 | #[allow(clippy::cast_possible_truncation)] |
| 72 | unsafe fn set_pos_unchecked(&mut self, pos: usize) { |
| 73 | debug_assert!(pos != 0 && pos <= BS::USIZE); |
| 74 | self.buffer[0] = pos as u8; |
| 75 | } |
| 76 | |
| 77 | /// Read up to `len` bytes of remaining data in the buffer. |
| 78 | /// |
no outgoing calls
no test coverage detected