44 references to Aggregate
System.Core (44)
System\Linq\ParallelEnumerable.cs (44)
1932return new CountAggregationOperator<TSource>(source).Aggregate(); 1966return new CountAggregationOperator<TSource>(Where<TSource>(source, predicate)).Aggregate(); 2003return new LongCountAggregationOperator<TSource>(source).Aggregate(); 2033return new LongCountAggregationOperator<TSource>(Where<TSource>(source, predicate)).Aggregate(); 2059return new IntSumAggregationOperator(source).Aggregate(); 2081return new NullableIntSumAggregationOperator(source).Aggregate(); 2103return new LongSumAggregationOperator(source).Aggregate(); 2125return new NullableLongSumAggregationOperator(source).Aggregate(); 2145return new FloatSumAggregationOperator(source).Aggregate(); 2165return new NullableFloatSumAggregationOperator(source).Aggregate(); 2185return new DoubleSumAggregationOperator(source).Aggregate(); 2205return new NullableDoubleSumAggregationOperator(source).Aggregate(); 2227return new DecimalSumAggregationOperator(source).Aggregate(); 2249return new NullableDecimalSumAggregationOperator(source).Aggregate(); 2517return new IntMinMaxAggregationOperator(source, -1).Aggregate(); 2537return new NullableIntMinMaxAggregationOperator(source, -1).Aggregate(); 2560return new LongMinMaxAggregationOperator(source, -1).Aggregate(); 2580return new NullableLongMinMaxAggregationOperator(source, -1).Aggregate(); 2603return new FloatMinMaxAggregationOperator(source, -1).Aggregate(); 2623return new NullableFloatMinMaxAggregationOperator(source, -1).Aggregate(); 2646return new DoubleMinMaxAggregationOperator(source, -1).Aggregate(); 2666return new NullableDoubleMinMaxAggregationOperator(source, -1).Aggregate(); 2689return new DecimalMinMaxAggregationOperator(source, -1).Aggregate(); 2709return new NullableDecimalMinMaxAggregationOperator(source, -1).Aggregate(); 3021return new IntMinMaxAggregationOperator(source, 1).Aggregate(); 3041return new NullableIntMinMaxAggregationOperator(source, 1).Aggregate(); 3064return new LongMinMaxAggregationOperator(source, 1).Aggregate(); 3084return new NullableLongMinMaxAggregationOperator(source, 1).Aggregate(); 3107return new FloatMinMaxAggregationOperator(source, 1).Aggregate(); 3127return new NullableFloatMinMaxAggregationOperator(source, 1).Aggregate(); 3150return new DoubleMinMaxAggregationOperator(source, 1).Aggregate(); 3170return new NullableDoubleMinMaxAggregationOperator(source, 1).Aggregate(); 3193return new DecimalMinMaxAggregationOperator(source, 1).Aggregate(); 3213return new NullableDecimalMinMaxAggregationOperator(source, 1).Aggregate(); 3526return new IntAverageAggregationOperator(source).Aggregate(); 3548return new NullableIntAverageAggregationOperator(source).Aggregate(); 3573return new LongAverageAggregationOperator(source).Aggregate(); 3595return new NullableLongAverageAggregationOperator(source).Aggregate(); 3618return new FloatAverageAggregationOperator(source).Aggregate(); 3638return new NullableFloatAverageAggregationOperator(source).Aggregate(); 3661return new DoubleAverageAggregationOperator(source).Aggregate(); 3681return new NullableDoubleAverageAggregationOperator(source).Aggregate(); 3704return new DecimalAverageAggregationOperator(source).Aggregate(); 3724return new NullableDecimalAverageAggregationOperator(source).Aggregate();