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

Iterate over a str and annotate with line and column.

Assumes s is content starting from point start_point.