mapper<I, O> function

MapperParser<I, O> mapper<I, O>(
  1. Parser<I> p,
  2. Mapper<I, O> m
)

Creates the MapperParser parser.

Implementation

MapperParser<I, O> mapper<I, O>(Parser<I> p, Mapper<I, O> m) =>
    MapperParser(p, m);