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