A ParseFn transforms a ParseInput to type T. It must throw a ParseError if the transformation can not be done.
ParseFn
ParseInput
T
ParseError
A ParseInput can be transformed using a ParseFn.
Syntactic sugar to lazy invoke a ParseFn; Creates a new ParseFn with given parser and returns it for later invocation.
Generated using TypeDoc
A
ParseFn
transforms aParseInput
to typeT
. It must throw aParseError
if the transformation can not be done.