Return the current column of the parser. The column number starts at `1` and is reset whenever a `\n` is seen.
(&self)
| 414 | /// |
| 415 | /// The column number starts at `1` and is reset whenever a `\n` is seen. |
| 416 | fn column(&self) -> usize { |
| 417 | self.parser().pos.get().column |
| 418 | } |
| 419 | |
| 420 | /// Return the next capturing index. Each subsequent call increments the |
| 421 | /// internal index. |