System.Linq.Parallel.NullableDoubleAverageAggregationOperator.CreateEnumerator C# (CSharp) Method

CreateEnumerator() protected method

protected CreateEnumerator ( int index, int count, System.Linq.Parallel.QueryOperatorEnumerator source, object sharedData, CancellationToken cancellationToken ) : QueryOperatorEnumerator,int>
index int
count int
source System.Linq.Parallel.QueryOperatorEnumerator
sharedData object
cancellationToken CancellationToken
return QueryOperatorEnumerator,int>
        protected override QueryOperatorEnumerator<Pair<double, long>, int> CreateEnumerator<TKey>(
            int index, int count, QueryOperatorEnumerator<double?, TKey> source, object sharedData, CancellationToken cancellationToken)
        {
            return new NullableDoubleAverageAggregationOperatorEnumerator<TKey>(source, index, cancellationToken);
        }