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

◆ Aggregate< TSource, TAccumulate >() [2/2]

static TAccumulate System.Linq.ParallelEnumerable.Aggregate< TSource, TAccumulate > ( this ParallelQuery< TSource > source,
TAccumulate seed,
Func< TAccumulate, TSource, TAccumulate > func,
QueryAggregationOptions options )
inlinestaticpackage

Definition at line 660 of file ParallelEnumerable.cs.

661 {
662 if (source == null)
663 {
664 throw new ArgumentNullException("source");
665 }
666 if (func == null)
667 {
668 throw new ArgumentNullException("func");
669 }
670 if ((0xFFFFFFFCu & (uint)options) != 0)
671 {
672 throw new ArgumentOutOfRangeException("options");
673 }
674 return source.PerformSequentialAggregation(seed, seedIsSpecified: true, func);
675 }

References System.Linq.func, System.options, and System.Linq.source.