(&self, offset: usize)
| 178 | /// Peek at the byte at position + offset. |
| 179 | #[inline] |
| 180 | fn peek_at(&self, offset: usize) -> Option<u8> { |
| 181 | self.content.get(self.position + offset).copied() |
| 182 | } |
| 183 | |
| 184 | /// Consume the current byte and advance position. |
| 185 | #[inline] |
no test coverage detected