Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 548 Bytes

ChainBinaryList.md

File metadata and controls

16 lines (11 loc) · 548 Bytes

Parser.ChainBinaryList<TValue,TOperator> method

Chains a left-associative binary operator to the parser.

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

See Also