(&self, cursor: &mut StringCursor, n: usize)
| 43 | |
| 44 | #[inline] |
| 45 | fn adjust_cursor(&self, cursor: &mut StringCursor, n: usize) { |
| 46 | cursor.position = n; |
| 47 | cursor.ptr = self[n..].as_ptr(); |
| 48 | } |
| 49 | |
| 50 | #[inline] |
| 51 | fn advance(cursor: &mut StringCursor) -> u32 { |