Parser.PrecededBy<TValue,TPreceding> method

Succeeds if the specified parser also succeeds beforehand (ignoring its result).

public static IParser<TValue> PrecededBy<TValue, TPreceding>(this IParser<TValue> parser, 
    IParser<TPreceding> precededBy)

See Also