(&mut self, bytes: usize)
| 38 | |
| 39 | #[inline] |
| 40 | fn skip_bytes(&mut self, bytes: usize) -> &str { |
| 41 | let skipped_str = &self.source[self.cursor..self.cursor + bytes]; |
| 42 | self.cursor += bytes; |
| 43 | skipped_str |
| 44 | } |
| 45 | |
| 46 | /// Returns the next byte in the string, if there is one. |
| 47 | /// |
no outgoing calls
no test coverage detected