Returns the first `Token` in the `Pointer`. alias for `front`
(&self)
| 174 | /// |
| 175 | /// alias for `front` |
| 176 | pub fn first(&self) -> Option<Token> { |
| 177 | self.front() |
| 178 | } |
| 179 | |
| 180 | /// Splits the `Pointer` into the first `Token` and a remainder `Pointer`. |
| 181 | pub fn split_front(&self) -> Option<(Token, &Self)> { |
no test coverage detected