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

◆ InternalAggregate()

override float System.Linq.Parallel.FloatSumAggregationOperator.InternalAggregate ( ref Exception singularExceptionToThrow)
inlineprotected

Definition at line 53 of file FloatSumAggregationOperator.cs.

54 {
55 using IEnumerator<double> enumerator = GetEnumerator(ParallelMergeOptions.FullyBuffered, suppressOrderPreservation: true);
56 double num = 0.0;
57 while (enumerator.MoveNext())
58 {
59 num += enumerator.Current;
60 }
61 return (float)num;
62 }