(&self)
| 125 | /// Check if at end (no more bytes) |
| 126 | #[inline(always)] |
| 127 | fn at_end(&self) -> bool { |
| 128 | self.pos >= self.bytes.len() |
| 129 | } |
| 130 | |
| 131 | /// Check if there's exactly one or zero bytes remaining. |
| 132 | #[inline(always)] |
no test coverage detected