(cursor: &mut StringCursor, n: usize)
| 79 | |
| 80 | #[inline] |
| 81 | fn back_skip(cursor: &mut StringCursor, n: usize) { |
| 82 | cursor.position -= n; |
| 83 | unsafe { cursor.ptr = cursor.ptr.sub(n) }; |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | impl StrDrive for &str { |
nothing calls this directly
no test coverage detected