pub fn iter_with_line_column_from(
s: &str,
start_point: LineColumn,
) -> impl Iterator<Item = (char, usize, usize, LineColumn)> + '_
Expand description
Iterate over a str and annotate with line and column.
Assumes s
is content starting from point start_point
.