parse abstract method

Tuple1<E>? parse(
  1. ParseState state
)

Parses input data actively and produces the result.

Returns Tuple1 of the result if parsing was successful; otherwise returns null.

final r1 = p.parse(state);

Implementation

Tuple1<E>? parse(ParseState state);