Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ AsSequentialQuery()

override IEnumerable< TOutput > System.Linq.Parallel.ZipQueryOperator< TLeftInput, TRightInput, TOutput >.AsSequentialQuery ( CancellationToken token)
inlinepackage

Definition at line 103 of file ZipQueryOperator.cs.

104 {
107 while (leftEnumerator.MoveNext() && rightEnumerator.MoveNext())
108 {
109 yield return _resultSelector(leftEnumerator.Current, rightEnumerator.Current);
110 }
111 }
IEnumerable< TOutput > AsSequentialQuery(CancellationToken token)
readonly QueryOperator< TRightInput > _rightChild
readonly QueryOperator< TLeftInput > _leftChild
readonly Func< TLeftInput, TRightInput, TOutput > _resultSelector

References System.Linq.Parallel.ZipQueryOperator< TLeftInput, TRightInput, TOutput >._leftChild, System.Linq.Parallel.ZipQueryOperator< TLeftInput, TRightInput, TOutput >._resultSelector, System.Linq.Parallel.ZipQueryOperator< TLeftInput, TRightInput, TOutput >._rightChild, System.Linq.Parallel.QueryOperator< TOutput >.AsSequentialQuery(), and System.Collections.Generic.Dictionary< TKey, TValue >.GetEnumerator().