(&self)
| 143 | /// Return the remaining bytes slice |
| 144 | #[inline(always)] |
| 145 | fn remaining_bytes(&self) -> &'a [u8] { |
| 146 | &self.bytes[self.pos..] |
| 147 | } |
| 148 | |
| 149 | fn consume_newline(&mut self) -> u32 { |
| 150 | let b = self.peek_byte(0); |
no outgoing calls
no test coverage detected