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

◆ InternalAggregate()

override? int System.Linq.Parallel.NullableIntSumAggregationOperator.InternalAggregate ( ref Exception singularExceptionToThrow)
inlineprotected

Definition at line 53 of file NullableIntSumAggregationOperator.cs.

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