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

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

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

Definition at line 787 of file ParallelEnumerable.cs.

788 {
789 if (source == null)
790 {
791 throw new ArgumentNullException("source");
792 }
793 if (predicate == null)
794 {
795 throw new ArgumentNullException("predicate");
796 }
797 return new LongCountAggregationOperator<TSource>(source.Where(predicate)).Aggregate();
798 }

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