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

◆ Any< TSource >() [2/2]

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

Definition at line 1388 of file ParallelEnumerable.cs.

1389 {
1390 if (source == null)
1391 {
1392 throw new ArgumentNullException("source");
1393 }
1394 if (predicate == null)
1395 {
1396 throw new ArgumentNullException("predicate");
1397 }
1399 }

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