operator & method

  1. @useResult
Parser<List> operator &(
  1. Parser other
)

Convenience operator returning a parser that accepts the receiver followed by other. See seq for details.

Implementation

@useResult
Parser<List> operator &(Parser other) => seq(other);