Package fj.parser


package fj.parser
Parser combinators.
  • Classes
    Class
    Description
    Parser<I,A,E>
    A parser is a function that takes some input (I) and produces either an error (E) or a parse result (A) and the remainder of the input.
    Parsers that accept Stream<Character> input.
    Parsers that accept Stream input.
    Result<I,A>
    A parse result made up of a value (A) and the remainder of the parse input (I).