System\Linq\ParallelEnumerable.cs (44)
1864return new CountAggregationOperator<TSource>(source).Aggregate();
1898return new CountAggregationOperator<TSource>(Where<TSource>(source, predicate)).Aggregate();
1933return new LongCountAggregationOperator<TSource>(source).Aggregate();
1963return new LongCountAggregationOperator<TSource>(Where<TSource>(source, predicate)).Aggregate();
1990return new IntSumAggregationOperator(source).Aggregate();
2013return new NullableIntSumAggregationOperator(source).Aggregate();
2036return new LongSumAggregationOperator(source).Aggregate();
2059return new NullableLongSumAggregationOperator(source).Aggregate();
2080return new FloatSumAggregationOperator(source).Aggregate();
2101return new NullableFloatSumAggregationOperator(source).Aggregate();
2122return new DoubleSumAggregationOperator(source).Aggregate();
2143return new NullableDoubleSumAggregationOperator(source).Aggregate();
2166return new DecimalSumAggregationOperator(source).Aggregate();
2189return new NullableDecimalSumAggregationOperator(source).Aggregate();
2458return new IntMinMaxAggregationOperator(source, -1).Aggregate();
2479return new NullableIntMinMaxAggregationOperator(source, -1).Aggregate();
2503return new LongMinMaxAggregationOperator(source, -1).Aggregate();
2524return new NullableLongMinMaxAggregationOperator(source, -1).Aggregate();
2548return new FloatMinMaxAggregationOperator(source, -1).Aggregate();
2569return new NullableFloatMinMaxAggregationOperator(source, -1).Aggregate();
2593return new DoubleMinMaxAggregationOperator(source, -1).Aggregate();
2614return new NullableDoubleMinMaxAggregationOperator(source, -1).Aggregate();
2638return new DecimalMinMaxAggregationOperator(source, -1).Aggregate();
2659return new NullableDecimalMinMaxAggregationOperator(source, -1).Aggregate();
2973return new IntMinMaxAggregationOperator(source, 1).Aggregate();
2994return new NullableIntMinMaxAggregationOperator(source, 1).Aggregate();
3018return new LongMinMaxAggregationOperator(source, 1).Aggregate();
3039return new NullableLongMinMaxAggregationOperator(source, 1).Aggregate();
3063return new FloatMinMaxAggregationOperator(source, 1).Aggregate();
3084return new NullableFloatMinMaxAggregationOperator(source, 1).Aggregate();
3108return new DoubleMinMaxAggregationOperator(source, 1).Aggregate();
3129return new NullableDoubleMinMaxAggregationOperator(source, 1).Aggregate();
3153return new DecimalMinMaxAggregationOperator(source, 1).Aggregate();
3174return new NullableDecimalMinMaxAggregationOperator(source, 1).Aggregate();
3489return new IntAverageAggregationOperator(source).Aggregate();
3512return new NullableIntAverageAggregationOperator(source).Aggregate();
3538return new LongAverageAggregationOperator(source).Aggregate();
3561return new NullableLongAverageAggregationOperator(source).Aggregate();
3585return new FloatAverageAggregationOperator(source).Aggregate();
3606return new NullableFloatAverageAggregationOperator(source).Aggregate();
3630return new DoubleAverageAggregationOperator(source).Aggregate();
3651return new NullableDoubleAverageAggregationOperator(source).Aggregate();
3675return new DecimalAverageAggregationOperator(source).Aggregate();
3696return new NullableDecimalAverageAggregationOperator(source).Aggregate();