- Declared in: RT.Generexes.Generex<T, TResult>
Declaration
public Generex<T, TResult> Or(
Predicate<T> predicate,
Func<GenerexMatch<T>, TResult> selector
)
Summary
Returns a regular expression that matches either this regular expression or a single element that satisfies
the specified predicate (cf.
|
in traditional regular expression syntax).
Parameters
Predicate<T> | predicate |
The predicate to match a single element against. |
Func<GenerexMatch<T>, TResult> | selector |
A selector that returns the result object for the new regular expression based on the element matched by the
predicate. |