Like :meth:`next_if` but only returns `True` or `False`.
(self, expr)
| 343 | return next(self) |
| 344 | |
| 345 | def skip_if(self, expr): |
| 346 | """Like :meth:`next_if` but only returns `True` or `False`.""" |
| 347 | return self.next_if(expr) is not None |
| 348 | |
| 349 | def __next__(self): |
| 350 | """Go one token ahead and return the old one. |
no test coverage detected