Parser.Then<T1,T2> method (1 of 9)

Executes one parser after another.

public static IParser<(T1, T2)> Then<T1, T2>(this IParser<T1> parser, IParser<T2> nextParser)

See Also


Parser.Then<TBefore,TAfter> method (2 of 9)

Executes one parser after another.

public static IParser<TAfter> Then<TBefore, TAfter>(this IParser<TBefore> parser, 
    Func<TBefore, IParser<TAfter>> convertValueToNextParser)

See Also


Parser.Then<T1,T2,T3> method (3 of 9)

Executes one parser after another.

public static IParser<(T1, T2, T3)> Then<T1, T2, T3>(this IParser<(T1, T2)> parser, 
    IParser<T3> nextParser)

See Also


Parser.Then<T1,T2,TAfter> method (4 of 9)

Executes one parser after another.

public static IParser<TAfter> Then<T1, T2, TAfter>(this IParser<T1> parser, IParser<T2> nextParser, 
    Func<T1, T2, TAfter> combineValues)

See Also


Parser.Then<T1,T2,T3,T4> method (5 of 9)

Executes one parser after another.

public static IParser<(T1, T2, T3, T4)> Then<T1, T2, T3, T4>(this IParser<(T1, T2, T3)> parser, 
    IParser<T4> nextParser)

See Also


Parser.Then<T1,T2,T3,T4,T5> method (6 of 9)

Executes one parser after another.

public static IParser<(T1, T2, T3, T4, T5)> Then<T1, T2, T3, T4, T5>(
    this IParser<(T1, T2, T3, T4)> parser, IParser<T5> nextParser)

See Also


Parser.Then<T1,T2,T3,T4,T5,T6> method (7 of 9)

Executes one parser after another.

public static IParser<(T1, T2, T3, T4, T5, T6)> Then<T1, T2, T3, T4, T5, T6>(
    this IParser<(T1, T2, T3, T4, T5)> parser, IParser<T6> nextParser)

See Also


Parser.Then<T1,T2,T3,T4,T5,T6,T7> method (8 of 9)

Executes one parser after another.

public static IParser<(T1, T2, T3, T4, T5, T6, T7)> Then<T1, T2, T3, T4, T5, T6, T7>(
    this IParser<(T1, T2, T3, T4, T5, T6)> parser, IParser<T7> nextParser)

See Also


Parser.Then<T1,T2,T3,T4,T5,T6,T7,T8> method (9 of 9)

Executes one parser after another.

public static IParser<(T1, T2, T3, T4, T5, T6, T7, T8)> Then<T1, T2, T3, T4, T5, T6, T7, T8>(
    this IParser<(T1, T2, T3, T4, T5, T6, T7)> parser, IParser<T8> nextParser)

See Also