1 write to _rightChildSelector
System.Linq.Parallel (1)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (1)
66
_rightChildSelector
= rightChildSelector;
5 references to _rightChildSelector
System.Linq.Parallel (5)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (5)
198
if (
_rightChildSelector
!= null)
202
return CancellableEnumerable.Wrap(Child.AsSequentialQuery(token), token).SelectMany(
_rightChildSelector
, _resultSelector);
204
return (IEnumerable<TOutput>)CancellableEnumerable.Wrap(Child.AsSequentialQuery(token), token).SelectMany(
_rightChildSelector
);
424
Debug.Assert(_selectManyOperator.
_rightChildSelector
!= null);
426
IEnumerable<TRightInput> rightChild = _selectManyOperator.
_rightChildSelector
(_mutables._currentLeftElement);