1 write to _selector
System.Linq (1)
System\Linq\Select.cs (1)
258_selector = selector;
11 references to _selector
System.Linq (11)
System\Linq\Select.cs (3)
263private protected override Iterator<TResult> Clone() => new IListSelectIterator<TSource, TResult>(_source, _selector); 277_current = _selector(_enumerator.Current); 300new IListSelectIterator<TSource, TResult2>(_source, CombineSelectors(_selector, selector));
System\Linq\Select.SpeedOpt.cs (8)
476Fill(_source, results, _selector); 487Fill(source, SetCountAndGetSpan(results, count), _selector); 511_selector(_source[i]); 521return new IListSkipTakeSelectIterator<TSource, TResult>(_source, _selector, count, int.MaxValue); 527return new IListSkipTakeSelectIterator<TSource, TResult>(_source, _selector, 0, count - 1); 535return _selector(_source[index]); 547return _selector(_source[0]); 560return _selector(_source[len - 1]);