The type of a ParseState transformer function in the continuation-passing style
A function of this type accepts a ParseState along with a Continuation and a ParseStack.
When executed, it transforms the state passed and calls
continuation with the new transformed state.
It is used as the transformer function for SymbolParser.
The type of a ParseState transformer function in the continuation-passing style
A function of this type accepts a ParseState along with a Continuation and a ParseStack. When executed, it transforms the
state
passed and callscontinuation
with the new transformed state.It is used as the transformer function for SymbolParser.
See