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.