pub fn iter_with_line_column<'a>(
    s: &'a str
) -> impl Iterator<Item = (char, usize, usize, LineColumn)> + 'a
Expand description

Iterate over annotated chars starting from line 1 and column 0 assuming s starts there.