44 references to Aggregate
System.Linq.Parallel (44)
System\Linq\ParallelEnumerable.cs (44)
1867return new CountAggregationOperator<TSource>(source).Aggregate(); 1901return new CountAggregationOperator<TSource>(Where<TSource>(source, predicate)).Aggregate(); 1936return new LongCountAggregationOperator<TSource>(source).Aggregate(); 1966return new LongCountAggregationOperator<TSource>(Where<TSource>(source, predicate)).Aggregate(); 1993return new IntSumAggregationOperator(source).Aggregate(); 2016return new NullableIntSumAggregationOperator(source).Aggregate(); 2039return new LongSumAggregationOperator(source).Aggregate(); 2062return new NullableLongSumAggregationOperator(source).Aggregate(); 2083return new FloatSumAggregationOperator(source).Aggregate(); 2104return new NullableFloatSumAggregationOperator(source).Aggregate(); 2125return new DoubleSumAggregationOperator(source).Aggregate(); 2146return new NullableDoubleSumAggregationOperator(source).Aggregate(); 2169return new DecimalSumAggregationOperator(source).Aggregate(); 2192return new NullableDecimalSumAggregationOperator(source).Aggregate(); 2461return new IntMinMaxAggregationOperator(source, -1).Aggregate(); 2482return new NullableIntMinMaxAggregationOperator(source, -1).Aggregate(); 2506return new LongMinMaxAggregationOperator(source, -1).Aggregate(); 2527return new NullableLongMinMaxAggregationOperator(source, -1).Aggregate(); 2551return new FloatMinMaxAggregationOperator(source, -1).Aggregate(); 2572return new NullableFloatMinMaxAggregationOperator(source, -1).Aggregate(); 2596return new DoubleMinMaxAggregationOperator(source, -1).Aggregate(); 2617return new NullableDoubleMinMaxAggregationOperator(source, -1).Aggregate(); 2641return new DecimalMinMaxAggregationOperator(source, -1).Aggregate(); 2662return new NullableDecimalMinMaxAggregationOperator(source, -1).Aggregate(); 2976return new IntMinMaxAggregationOperator(source, 1).Aggregate(); 2997return new NullableIntMinMaxAggregationOperator(source, 1).Aggregate(); 3021return new LongMinMaxAggregationOperator(source, 1).Aggregate(); 3042return new NullableLongMinMaxAggregationOperator(source, 1).Aggregate(); 3066return new FloatMinMaxAggregationOperator(source, 1).Aggregate(); 3087return new NullableFloatMinMaxAggregationOperator(source, 1).Aggregate(); 3111return new DoubleMinMaxAggregationOperator(source, 1).Aggregate(); 3132return new NullableDoubleMinMaxAggregationOperator(source, 1).Aggregate(); 3156return new DecimalMinMaxAggregationOperator(source, 1).Aggregate(); 3177return new NullableDecimalMinMaxAggregationOperator(source, 1).Aggregate(); 3492return new IntAverageAggregationOperator(source).Aggregate(); 3515return new NullableIntAverageAggregationOperator(source).Aggregate(); 3541return new LongAverageAggregationOperator(source).Aggregate(); 3564return new NullableLongAverageAggregationOperator(source).Aggregate(); 3588return new FloatAverageAggregationOperator(source).Aggregate(); 3609return new NullableFloatAverageAggregationOperator(source).Aggregate(); 3633return new DoubleAverageAggregationOperator(source).Aggregate(); 3654return new NullableDoubleAverageAggregationOperator(source).Aggregate(); 3678return new DecimalAverageAggregationOperator(source).Aggregate(); 3699return new NullableDecimalAverageAggregationOperator(source).Aggregate();