toSequenceParser method

Parser<List<T>> toSequenceParser()

Converts the parser in this iterable to a sequence of parsers.

Implementation

Parser<List<T>> toSequenceParser() => SequenceParser<T>(this);