Parser.ChainBinary<TValue,TOperator> method

Chains a left-associative binary operator to the parser.

public static IParser<TValue> ChainBinary<TValue, TOperator>(this IParser<TValue> parser, 
    IParser<TOperator> opParser, Func<TOperator, TValue, TValue, TValue> apply)

See Also