ForAll3
TTests if all corresponding elements of the collection satisfy the given predicate
.
If any application returns false
then the overall result is false
and no further elements are tested. Otherwise, true is returned.
WARNING
This function causes
IEnumerable<T>
evaluation.
Parameters
Returns
Func<T, T2, T3, bool> predicate
IEnumerable<T> source
IEnumerable<T2> source2
IEnumerable<T3> source3
bool
Usage
Checking if all elements of all collections are equals
Last updated
Was this helpful?