8 overrides of IsIndexible
System.Core (8)
System\Linq\Parallel\QueryOperators\Binary\ZipQueryOperator.cs (1)
193internal override bool IsIndexible
System\Linq\Parallel\QueryOperators\ListQueryResults.cs (1)
41internal override bool IsIndexible
System\Linq\Parallel\QueryOperators\Unary\ConcatQueryOperator.cs (1)
270internal override bool IsIndexible
System\Linq\Parallel\QueryOperators\Unary\IndexedSelectQueryOperator.cs (1)
237internal override bool IsIndexible
System\Linq\Parallel\QueryOperators\Unary\ReverseQueryOperator.cs (1)
205internal override bool IsIndexible
System\Linq\Parallel\QueryOperators\Unary\SelectQueryOperator.cs (1)
174internal override bool IsIndexible
System\Linq\Parallel\QueryOperators\Unary\SortQueryOperator.cs (1)
165internal override bool IsIndexible
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (1)
364internal override bool IsIndexible
19 references to IsIndexible
System.Core (19)
System\Linq\Parallel\QueryOperators\Binary\ZipQueryOperator.cs (2)
182Contract.Assert(m_leftChildResults.IsIndexible); 183Contract.Assert(m_rightChildResults.IsIndexible);
System\Linq\Parallel\QueryOperators\BinaryQueryOperator.cs (2)
109Contract.Assert(IsIndexible == (m_op.OrdinalIndexState == OrdinalIndexState.Indexible)); 119else if (IsIndexible)
System\Linq\Parallel\QueryOperators\QueryOperator.cs (1)
217if (results.IsIndexible && OutputOrdered)
System\Linq\Parallel\QueryOperators\Unary\ConcatQueryOperator.cs (4)
245if (leftChildQueryResults.IsIndexible && rightChildQueryResults.IsIndexible) 264Contract.Assert(leftChildQueryResults.IsIndexible && rightChildQueryResults.IsIndexible);
System\Linq\Parallel\QueryOperators\Unary\IndexedSelectQueryOperator.cs (2)
205if (childQueryResults.IsIndexible) 223Contract.Assert(m_childQueryResults.IsIndexible);
System\Linq\Parallel\QueryOperators\Unary\ReverseQueryOperator.cs (2)
184if (childQueryResults.IsIndexible) 201Contract.Assert(m_childQueryResults.IsIndexible);
System\Linq\Parallel\QueryOperators\Unary\SelectQueryOperator.cs (2)
153if (childQueryResults.IsIndexible) 170Contract.Assert(m_childQueryResults.IsIndexible);
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (2)
341if (childQueryResults.IsIndexible) 359Contract.Assert(m_childQueryResults.IsIndexible);
System\Linq\Parallel\QueryOperators\UnaryQueryOperator.cs (2)
115Contract.Assert(IsIndexible == (m_op.OrdinalIndexState == OrdinalIndexState.Indexible)); 125else if (IsIndexible)