System\Linq\Parallel\QueryOperators\Binary\ExceptQueryOperator.cs (9)
101outputStream[i] = (QueryOperatorEnumerator<TInputOutput, TLeftKey>)(object)
139private readonly QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> _leftSource; // Left data source.
140private readonly QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, int> _rightSource; // Right data source.
151QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> leftSource,
152QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, int> rightSource,
229private readonly QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> _leftSource; // Left data source.
230private readonly QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, int> _rightSource; // Right data source.
243QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> leftSource,
244QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, int> rightSource,
System\Linq\Parallel\QueryOperators\Binary\GroupJoinQueryOperator.cs (4)
219private readonly QueryOperatorEnumerator<Pair<TElement, THashKey>, TOrderKey> _dataSource; // data source. For building.
222internal GroupJoinHashLookupBuilder(QueryOperatorEnumerator<Pair<TElement, THashKey>, TOrderKey> dataSource, IEqualityComparer<THashKey>? keyComparer)
305private readonly QueryOperatorEnumerator<Pair<TElement, THashKey>, TOrderKey> _dataSource; // data source. For building.
310QueryOperatorEnumerator<Pair<TElement, THashKey>, TOrderKey> dataSource,
System\Linq\Parallel\QueryOperators\Binary\IntersectQueryOperator.cs (9)
102outputStream[i] = (QueryOperatorEnumerator<TInputOutput, TLeftKey>)(object)
128private readonly QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> _leftSource; // Left data source.
129private readonly QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, int> _rightSource; // Right data source.
140QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> leftSource,
141QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, int> rightSource,
230private readonly QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> _leftSource; // Left data source.
231private readonly QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, int> _rightSource; // Right data source.
242QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> leftSource,
243QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, int> rightSource,
System\Linq\Parallel\QueryOperators\Binary\UnionQueryOperator.cs (8)
185private QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey>? _leftSource; // Left data source.
186private QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TRightKey>? _rightSource; // Right data source.
197QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> leftSource,
198QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TRightKey> rightSource,
294private readonly QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> _leftSource; // Left data source.
295private readonly QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TRightKey> _rightSource; // Right data source.
310QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> leftSource,
311QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TRightKey> rightSource,
System\Linq\Parallel\QueryOperators\Inlined\CountAggregationOperator.cs (5)
65protected override QueryOperatorEnumerator<int, int> CreateEnumerator<TKey>(
66int index, int count, QueryOperatorEnumerator<TSource, TKey> source, object? sharedData,
79private readonly QueryOperatorEnumerator<TSource, TKey> _source; // The source data.
85internal CountAggregationOperatorEnumerator(QueryOperatorEnumerator<TSource, TKey> source, int partitionIndex,
103QueryOperatorEnumerator<TSource, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\DecimalAverageAggregationOperator.cs (5)
73protected override QueryOperatorEnumerator<Pair<decimal, long>, int> CreateEnumerator<TKey>(
74int index, int count, QueryOperatorEnumerator<decimal, TKey> source, object? sharedData, CancellationToken cancellationToken)
86private readonly QueryOperatorEnumerator<decimal, TKey> _source; // The source data.
92internal DecimalAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<decimal, TKey> source, int partitionIndex,
111QueryOperatorEnumerator<decimal, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\DecimalMinMaxAggregationOperator.cs (5)
90protected override QueryOperatorEnumerator<decimal, int> CreateEnumerator<TKey>(
91int index, int count, QueryOperatorEnumerator<decimal, TKey> source, object? sharedData, CancellationToken cancellationToken)
103private readonly QueryOperatorEnumerator<decimal, TKey> _source; // The source data.
110internal DecimalMinMaxAggregationOperatorEnumerator(QueryOperatorEnumerator<decimal, TKey> source, int partitionIndex, int sign,
127QueryOperatorEnumerator<decimal, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\DecimalSumAggregationOperator.cs (5)
60protected override QueryOperatorEnumerator<decimal, int> CreateEnumerator<TKey>(
61int index, int count, QueryOperatorEnumerator<decimal, TKey> source, object? sharedData, CancellationToken cancellationToken)
73private readonly QueryOperatorEnumerator<decimal, TKey> _source; // The source data.
79internal DecimalSumAggregationOperatorEnumerator(QueryOperatorEnumerator<decimal, TKey> source, int partitionIndex,
97QueryOperatorEnumerator<decimal, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\DoubleAverageAggregationOperator.cs (5)
73protected override QueryOperatorEnumerator<Pair<double, long>, int> CreateEnumerator<TKey>(
74int index, int count, QueryOperatorEnumerator<double, TKey> source, object? sharedData,
87private readonly QueryOperatorEnumerator<double, TKey> _source; // The source data.
93internal DoubleAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<double, TKey> source, int partitionIndex,
112QueryOperatorEnumerator<double, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\DoubleMinMaxAggregationOperator.cs (5)
96protected override QueryOperatorEnumerator<double, int> CreateEnumerator<TKey>(
97int index, int count, QueryOperatorEnumerator<double, TKey> source, object? sharedData,
110private readonly QueryOperatorEnumerator<double, TKey> _source; // The source data.
117internal DoubleMinMaxAggregationOperatorEnumerator(QueryOperatorEnumerator<double, TKey> source, int partitionIndex, int sign,
134QueryOperatorEnumerator<double, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\DoubleSumAggregationOperator.cs (5)
60protected override QueryOperatorEnumerator<double, int> CreateEnumerator<TKey>(
61int index, int count, QueryOperatorEnumerator<double, TKey> source, object? sharedData, CancellationToken cancellationToken)
73private readonly QueryOperatorEnumerator<double, TKey> _source; // The source data.
79internal DoubleSumAggregationOperatorEnumerator(QueryOperatorEnumerator<double, TKey> source, int partitionIndex,
97QueryOperatorEnumerator<double, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\FloatAverageAggregationOperator.cs (5)
73protected override QueryOperatorEnumerator<Pair<double, long>, int> CreateEnumerator<TKey>(
74int index, int count, QueryOperatorEnumerator<float, TKey> source, object? sharedData,
87private readonly QueryOperatorEnumerator<float, TKey> _source; // The source data.
93internal FloatAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<float, TKey> source, int partitionIndex,
112QueryOperatorEnumerator<float, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\FloatMinMaxAggregationOperator.cs (5)
95protected override QueryOperatorEnumerator<float, int> CreateEnumerator<TKey>(
96int index, int count, QueryOperatorEnumerator<float, TKey> source, object? sharedData, CancellationToken cancellationToken)
108private readonly QueryOperatorEnumerator<float, TKey> _source; // The source data.
115internal FloatMinMaxAggregationOperatorEnumerator(QueryOperatorEnumerator<float, TKey> source, int partitionIndex, int sign,
132QueryOperatorEnumerator<float, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\FloatSumAggregationOperator.cs (5)
60protected override QueryOperatorEnumerator<double, int> CreateEnumerator<TKey>(
61int index, int count, QueryOperatorEnumerator<float, TKey> source, object? sharedData,
74private readonly QueryOperatorEnumerator<float, TKey> _source; // The source data.
80internal FloatSumAggregationOperatorEnumerator(QueryOperatorEnumerator<float, TKey> source, int partitionIndex,
98QueryOperatorEnumerator<float, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\IntAverageAggregationOperator.cs (5)
73protected override QueryOperatorEnumerator<Pair<long, long>, int> CreateEnumerator<TKey>(
74int index, int count, QueryOperatorEnumerator<int, TKey> source, object? sharedData, CancellationToken cancellationToken)
86private readonly QueryOperatorEnumerator<int, TKey> _source; // The source data.
92internal IntAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<int, TKey> source, int partitionIndex,
111QueryOperatorEnumerator<int, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\IntMinMaxAggregationOperator.cs (5)
90protected override QueryOperatorEnumerator<int, int> CreateEnumerator<TKey>(
91int index, int count, QueryOperatorEnumerator<int, TKey> source, object? sharedData, CancellationToken cancellationToken)
103private readonly QueryOperatorEnumerator<int, TKey> _source; // The source data.
110internal IntMinMaxAggregationOperatorEnumerator(QueryOperatorEnumerator<int, TKey> source, int partitionIndex, int sign,
127QueryOperatorEnumerator<int, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\IntSumAggregationOperator.cs (5)
64protected override QueryOperatorEnumerator<int, int> CreateEnumerator<TKey>(
65int index, int count, QueryOperatorEnumerator<int, TKey> source, object? sharedData, CancellationToken cancellationToken)
77private readonly QueryOperatorEnumerator<int, TKey> _source; // The source data.
83internal IntSumAggregationOperatorEnumerator(QueryOperatorEnumerator<int, TKey> source, int partitionIndex,
101QueryOperatorEnumerator<int, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\LongAverageAggregationOperator.cs (5)
73protected override QueryOperatorEnumerator<Pair<long, long>, int> CreateEnumerator<TKey>(
74int index, int count, QueryOperatorEnumerator<long, TKey> source, object? sharedData, CancellationToken cancellationToken)
86private readonly QueryOperatorEnumerator<long, TKey> _source; // The source data.
92internal LongAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<long, TKey> source, int partitionIndex,
111QueryOperatorEnumerator<long, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\LongCountAggregationOperator.cs (5)
64protected override QueryOperatorEnumerator<long, int> CreateEnumerator<TKey>(
65int index, int count, QueryOperatorEnumerator<TSource, TKey> source, object? sharedData, CancellationToken cancellationToken)
77private readonly QueryOperatorEnumerator<TSource, TKey> _source; // The source data.
83internal LongCountAggregationOperatorEnumerator(QueryOperatorEnumerator<TSource, TKey> source, int partitionIndex,
101QueryOperatorEnumerator<TSource, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\LongMinMaxAggregationOperator.cs (5)
90protected override QueryOperatorEnumerator<long, int> CreateEnumerator<TKey>(
91int index, int count, QueryOperatorEnumerator<long, TKey> source, object? sharedData,
104private readonly QueryOperatorEnumerator<long, TKey> _source; // The source data.
111internal LongMinMaxAggregationOperatorEnumerator(QueryOperatorEnumerator<long, TKey> source, int partitionIndex, int sign,
128QueryOperatorEnumerator<long, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\LongSumAggregationOperator.cs (5)
63protected override QueryOperatorEnumerator<long, int> CreateEnumerator<TKey>(
64int index, int count, QueryOperatorEnumerator<long, TKey> source, object? sharedData, CancellationToken cancellationToken)
76private readonly QueryOperatorEnumerator<long, TKey> _source; // The source data.
82internal LongSumAggregationOperatorEnumerator(QueryOperatorEnumerator<long, TKey> source, int partitionIndex,
100QueryOperatorEnumerator<long, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\NullableDecimalAverageAggregationOperator.cs (5)
72protected override QueryOperatorEnumerator<Pair<decimal, long>, int> CreateEnumerator<TKey>(
73int index, int count, QueryOperatorEnumerator<decimal?, TKey> source, object? sharedData, CancellationToken cancellationToken)
85private readonly QueryOperatorEnumerator<decimal?, TKey> _source; // The source data.
91internal NullableDecimalAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<decimal?, TKey> source, int partitionIndex,
110QueryOperatorEnumerator<decimal?, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\NullableDecimalMinMaxAggregationOperator.cs (5)
89protected override QueryOperatorEnumerator<decimal?, int> CreateEnumerator<TKey>(
90int index, int count, QueryOperatorEnumerator<decimal?, TKey> source, object? sharedData, CancellationToken cancellationToken)
102private readonly QueryOperatorEnumerator<decimal?, TKey> _source; // The source data.
109internal NullableDecimalMinMaxAggregationOperatorEnumerator(QueryOperatorEnumerator<decimal?, TKey> source, int partitionIndex, int sign,
126QueryOperatorEnumerator<decimal?, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\NullableDecimalSumAggregationOperator.cs (5)
60protected override QueryOperatorEnumerator<decimal?, int> CreateEnumerator<TKey>(
61int index, int count, QueryOperatorEnumerator<decimal?, TKey> source, object? sharedData, CancellationToken cancellationToken)
73private readonly QueryOperatorEnumerator<decimal?, TKey> _source; // The source data.
79internal NullableDecimalSumAggregationOperatorEnumerator(QueryOperatorEnumerator<decimal?, TKey> source, int partitionIndex,
97QueryOperatorEnumerator<decimal?, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\NullableDoubleAverageAggregationOperator.cs (5)
72protected override QueryOperatorEnumerator<Pair<double, long>, int> CreateEnumerator<TKey>(
73int index, int count, QueryOperatorEnumerator<double?, TKey> source, object? sharedData, CancellationToken cancellationToken)
85private readonly QueryOperatorEnumerator<double?, TKey> _source; // The source data.
91internal NullableDoubleAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<double?, TKey> source, int partitionIndex,
110QueryOperatorEnumerator<double?, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\NullableDoubleMinMaxAggregationOperator.cs (5)
97protected override QueryOperatorEnumerator<double?, int> CreateEnumerator<TKey>(
98int index, int count, QueryOperatorEnumerator<double?, TKey> source, object? sharedData, CancellationToken cancellationToken)
110private readonly QueryOperatorEnumerator<double?, TKey> _source; // The source data.
117internal NullableDoubleMinMaxAggregationOperatorEnumerator(QueryOperatorEnumerator<double?, TKey> source, int partitionIndex, int sign,
134QueryOperatorEnumerator<double?, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\NullableDoubleSumAggregationOperator.cs (5)
60protected override QueryOperatorEnumerator<double?, int> CreateEnumerator<TKey>(
61int index, int count, QueryOperatorEnumerator<double?, TKey> source, object? sharedData, CancellationToken cancellationToken)
73private readonly QueryOperatorEnumerator<double?, TKey> _source; // The source data.
79internal NullableDoubleSumAggregationOperatorEnumerator(QueryOperatorEnumerator<double?, TKey> source, int partitionIndex,
97QueryOperatorEnumerator<double?, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\NullableFloatAverageAggregationOperator.cs (5)
72protected override QueryOperatorEnumerator<Pair<double, long>, int> CreateEnumerator<TKey>(
73int index, int count, QueryOperatorEnumerator<float?, TKey> source, object? sharedData, CancellationToken cancellationToken)
85private readonly QueryOperatorEnumerator<float?, TKey> _source; // The source data.
91internal NullableFloatAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<float?, TKey> source, int partitionIndex,
110QueryOperatorEnumerator<float?, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\NullableFloatMinMaxAggregationOperator.cs (5)
97protected override QueryOperatorEnumerator<float?, int> CreateEnumerator<TKey>(
98int index, int count, QueryOperatorEnumerator<float?, TKey> source, object? sharedData, CancellationToken cancellationToken)
110private readonly QueryOperatorEnumerator<float?, TKey> _source; // The source data.
117internal NullableFloatMinMaxAggregationOperatorEnumerator(QueryOperatorEnumerator<float?, TKey> source, int partitionIndex, int sign,
134QueryOperatorEnumerator<float?, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\NullableFloatSumAggregationOperator.cs (5)
60protected override QueryOperatorEnumerator<double?, int> CreateEnumerator<TKey>(
61int index, int count, QueryOperatorEnumerator<float?, TKey> source, object? sharedData, CancellationToken cancellationToken)
73private readonly QueryOperatorEnumerator<float?, TKey> _source; // The source data.
79internal NullableFloatSumAggregationOperatorEnumerator(QueryOperatorEnumerator<float?, TKey> source, int partitionIndex,
97QueryOperatorEnumerator<float?, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\NullableIntAverageAggregationOperator.cs (5)
72protected override QueryOperatorEnumerator<Pair<long, long>, int> CreateEnumerator<TKey>(
73int index, int count, QueryOperatorEnumerator<int?, TKey> source, object? sharedData, CancellationToken cancellationToken)
85private readonly QueryOperatorEnumerator<int?, TKey> _source; // The source data.
91internal NullableIntAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<int?, TKey> source, int partitionIndex,
110QueryOperatorEnumerator<int?, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\NullableIntMinMaxAggregationOperator.cs (5)
89protected override QueryOperatorEnumerator<int?, int> CreateEnumerator<TKey>(
90int index, int count, QueryOperatorEnumerator<int?, TKey> source, object? sharedData, CancellationToken cancellationToken)
102private readonly QueryOperatorEnumerator<int?, TKey> _source; // The source data.
109internal NullableIntMinMaxAggregationOperatorEnumerator(QueryOperatorEnumerator<int?, TKey> source, int partitionIndex, int sign,
126QueryOperatorEnumerator<int?, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\NullableIntSumAggregationOperator.cs (5)
63protected override QueryOperatorEnumerator<int?, int> CreateEnumerator<TKey>(
64int index, int count, QueryOperatorEnumerator<int?, TKey> source, object? sharedData, CancellationToken cancellationToken)
76private readonly QueryOperatorEnumerator<int?, TKey> _source; // The source data.
82internal NullableIntSumAggregationOperatorEnumerator(QueryOperatorEnumerator<int?, TKey> source, int partitionIndex,
100QueryOperatorEnumerator<int?, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\NullableLongAverageAggregationOperator.cs (5)
72protected override QueryOperatorEnumerator<Pair<long, long>, int> CreateEnumerator<TKey>(
73int index, int count, QueryOperatorEnumerator<long?, TKey> source, object? sharedData,
86private readonly QueryOperatorEnumerator<long?, TKey> _source; // The source data.
92internal NullableLongAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<long?, TKey> source, int partitionIndex,
111QueryOperatorEnumerator<long?, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\NullableLongMinMaxAggregationOperator.cs (5)
89protected override QueryOperatorEnumerator<long?, int> CreateEnumerator<TKey>(
90int index, int count, QueryOperatorEnumerator<long?, TKey> source, object? sharedData,
103private readonly QueryOperatorEnumerator<long?, TKey> _source; // The source data.
110internal NullableLongMinMaxAggregationOperatorEnumerator(QueryOperatorEnumerator<long?, TKey> source, int partitionIndex, int sign,
127QueryOperatorEnumerator<long?, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Inlined\NullableLongSumAggregationOperator.cs (5)
63protected override QueryOperatorEnumerator<long?, int> CreateEnumerator<TKey>(
64int index, int count, QueryOperatorEnumerator<long?, TKey> source, object? sharedData,
77private readonly QueryOperatorEnumerator<long?, TKey> _source; // The source data.
83internal NullableLongSumAggregationOperatorEnumerator(QueryOperatorEnumerator<long?, TKey> source, int partitionIndex,
101QueryOperatorEnumerator<long?, TKey> source = _source;
System\Linq\Parallel\QueryOperators\Unary\DistinctQueryOperator.cs (5)
95outputStream[i] = (QueryOperatorEnumerator<TInputOutput, TKey>)(object)
121private readonly QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TKey> _source; // The data source.
131QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TKey> source, IEqualityComparer<TInputOutput>? comparer,
193private readonly QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TKey> _source; // The data source.
206QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TKey> source,
System\Linq\Parallel\QueryOperators\Unary\GroupByQueryOperator.cs (10)
119outputStream[i] = (QueryOperatorEnumerator<IGrouping<TGroupKey, TElement>, TKey>)(object)enumerator;
158outputStream[i] = (QueryOperatorEnumerator<IGrouping<TGroupKey, TElement>, TKey>)(object)enumerator;
224protected readonly QueryOperatorEnumerator<Pair<TSource, TGroupKey>, TOrderKey> _source; // The data source to enumerate.
240QueryOperatorEnumerator<Pair<TSource, TGroupKey>, TOrderKey> source,
310QueryOperatorEnumerator<Pair<TSource, TGroupKey>, TOrderKey> source,
370QueryOperatorEnumerator<Pair<TSource, TGroupKey>, TOrderKey> source,
425protected readonly QueryOperatorEnumerator<Pair<TSource, TGroupKey>, TOrderKey> _source; // The data source to enumerate.
442protected OrderedGroupByQueryOperatorEnumerator(QueryOperatorEnumerator<Pair<TSource, TGroupKey>, TOrderKey> source,
538internal OrderedGroupByIdentityQueryOperatorEnumerator(QueryOperatorEnumerator<Pair<TSource, TGroupKey>, TOrderKey> source,
611internal OrderedGroupByElementSelectorQueryOperatorEnumerator(QueryOperatorEnumerator<Pair<TSource, TGroupKey>, TOrderKey> source,
System\Linq\Parallel\Scheduling\SpoolingTask.cs (8)
184private readonly QueryOperatorEnumerator<TInputOutput, TIgnoreKey> _source;
204QueryOperatorEnumerator<TInputOutput, TIgnoreKey> source, SynchronousChannel<TInputOutput> destination)
224QueryOperatorEnumerator<TInputOutput, TIgnoreKey> source = _source;
273private readonly QueryOperatorEnumerator<TInputOutput, TIgnoreKey> _source;
293QueryOperatorEnumerator<TInputOutput, TIgnoreKey> source, AsynchronousChannel<TInputOutput> destination)
313QueryOperatorEnumerator<TInputOutput, TIgnoreKey> source = _source;
361private readonly QueryOperatorEnumerator<TInputOutput, TIgnoreKey> _source;
377QueryOperatorEnumerator<TInputOutput, TIgnoreKey> source)