(&self)
| 1116 | } |
| 1117 | |
| 1118 | const fn at_beginning(&self) -> bool { |
| 1119 | // self.ctx().string_position == self.state().start |
| 1120 | self.cursor.position == 0 |
| 1121 | } |
| 1122 | |
| 1123 | const fn at_end<S>(&self, req: &Request<'_, S>) -> bool { |
| 1124 | self.cursor.position == req.end |
no outgoing calls
no test coverage detected