Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ All< TSource >()

static bool System.Linq.ParallelEnumerable.All< TSource > ( this ParallelQuery< TSource > source,
Func< TSource, bool > predicate )
inlinestatic

Definition at line 1410 of file ParallelEnumerable.cs.

1411 {
1412 if (source == null)
1413 {
1414 throw new ArgumentNullException("source");
1415 }
1416 if (predicate == null)
1417 {
1418 throw new ArgumentNullException("predicate");
1419 }
1421 }

References System.Linq.predicate, and System.Linq.source.