23 references to RightChild
System.Linq.Parallel (23)
System\Linq\Parallel\QueryOperators\Binary\ConcatQueryOperator.cs (6)
44
_outputOrdered = LeftChild.OutputOrdered ||
RightChild
.OutputOrdered;
47
_prematureMergeRight =
RightChild
.OrdinalIndexState.IsWorseThan(OrdinalIndexState.Increasing);
50
&& (
RightChild
.OrdinalIndexState == OrdinalIndexState.Indexable))
58
ExchangeUtilities.Worse(LeftChild.OrdinalIndexState,
RightChild
.OrdinalIndexState)));
71
QueryResults<TSource> rightChildResults =
RightChild
.Open(settings, preferStriping);
140
return LeftChild.AsSequentialQuery(token).Concat(
RightChild
.AsSequentialQuery(token));
System\Linq\Parallel\QueryOperators\Binary\ExceptQueryOperator.cs (2)
47
QueryResults<TInputOutput> rightChildResults =
RightChild
.Open(settings, false);
117
IEnumerable<TInputOutput> wrappedRightChild = CancellableEnumerable.Wrap(
RightChild
.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Binary\GroupJoinQueryOperator.cs (4)
66
QueryResults<TRightInput> rightResults =
RightChild
.Open(settings, false);
101
if (
RightChild
.OutputOrdered)
141
if (
RightChild
.OutputOrdered && LeftChild.OutputOrdered)
193
IEnumerable<TRightInput> wrappedRightChild = CancellableEnumerable.Wrap(
RightChild
.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Binary\IntersectQueryOperator.cs (2)
49
QueryResults<TInputOutput> rightChildResults =
RightChild
.Open(settings, false);
223
IEnumerable<TInputOutput> wrappedRightChild = CancellableEnumerable.Wrap(
RightChild
.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Binary\JoinQueryOperator.cs (3)
115
if (
RightChild
.OutputOrdered && LeftChild.OutputOrdered)
159
QueryResults<TRightInput> rightResults =
RightChild
.Open(settings, false);
171
IEnumerable<TRightInput> wrappedRightChild = CancellableEnumerable.Wrap(
RightChild
.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Binary\UnionQueryOperator.cs (6)
36
_outputOrdered = LeftChild.OutputOrdered ||
RightChild
.OutputOrdered;
51
QueryResults<TInputOutput> rightChildResults =
RightChild
.Open(settings, false);
93
if (
RightChild
.OutputOrdered)
123
if (LeftChild.OutputOrdered ||
RightChild
.OutputOrdered)
134
leftHashStream[i], rightHashStream[i], LeftChild.OutputOrdered,
RightChild
.OutputOrdered,
163
IEnumerable<TInputOutput> wrappedRightChild = CancellableEnumerable.Wrap(
RightChild
.AsSequentialQuery(token), token);