mapper<O> method

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

Creates the MapperParser parser.

final p = chars.map(String.fromCharCodes);

Implementation

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