pub fn tokens_in_line<'a, Str, Token: 'a, Tokenizer>(
line: Str,
tokenizer: &'a Tokenizer,
) -> impl Iterator<Item = (Range<usize>, Token)> + 'aExpand description
Returns an Iterator over the tokens found in the specified line, along with their column ranges. Column numbers start at 0.