Returns the last token in the `Pointer`. alias for `back`
(&self)
| 152 | /// |
| 153 | /// alias for `back` |
| 154 | pub fn last(&self) -> Option<Token> { |
| 155 | self.back() |
| 156 | } |
| 157 | |
| 158 | /// Returns the first `Token` in the `Pointer`. |
| 159 | pub fn front(&self) -> Option<Token> { |
no test coverage detected