(&self)
| 131 | /// Check if there's exactly one or zero bytes remaining. |
| 132 | #[inline(always)] |
| 133 | fn is_last(&self) -> bool { |
| 134 | self.pos >= self.bytes.len() |
| 135 | } |
| 136 | |
| 137 | /// Return the remaining bytes as a &str (valid since source is UTF-8) |
| 138 | #[inline(always)] |
no test coverage detected