11 references to IListSkipTakeSelectIterator
System.Linq (11)
System\Linq\Select.SpeedOpt.cs (10)
195return new IListSkipTakeSelectIterator<TSource, TResult>(_source, _selector, count, int.MaxValue); 203new IListSkipTakeSelectIterator<TSource, TResult>(_source, _selector, 0, count - 1); 418return new IListSkipTakeSelectIterator<TSource, TResult>(_source, _selector, count, int.MaxValue); 424return new IListSkipTakeSelectIterator<TSource, TResult>(_source, _selector, 0, count - 1); 521return new IListSkipTakeSelectIterator<TSource, TResult>(_source, _selector, count, int.MaxValue); 527return new IListSkipTakeSelectIterator<TSource, TResult>(_source, _selector, 0, count - 1); 805new IListSkipTakeSelectIterator<TSource, TResult>(_source, _selector, _minIndexInclusive, _maxIndexInclusive); 825new IListSkipTakeSelectIterator<TSource, TResult2>(_source, CombineSelectors(_selector, selector), _minIndexInclusive, _maxIndexInclusive); 831return (uint)minIndex > (uint)_maxIndexInclusive ? null : new IListSkipTakeSelectIterator<TSource, TResult>(_source, _selector, minIndex, _maxIndexInclusive); 838return (uint)maxIndex >= (uint)_maxIndexInclusive ? this : new IListSkipTakeSelectIterator<TSource, TResult>(_source, _selector, _minIndexInclusive, maxIndex);
System\Linq\SkipTake.SpeedOpt.cs (1)
53new IListSkipTakeSelectIterator<TSource, TResult>(_source, selector, _minIndexInclusive, _maxIndexInclusive);