Parser.SelectMany<TBefore,TDuring,TAfter> method

Used to support LINQ query syntax.

public static IParser<TAfter> SelectMany<TBefore, TDuring, TAfter>(this IParser<TBefore> parser, 
    Func<TBefore, IParser<TDuring>> selector, Func<TBefore, TDuring, TAfter> projector)

See Also