1 write to _selector
System.Linq (1)
System\Linq\Select.cs (1)
208_selector = selector;
11 references to _selector
System.Linq (11)
System\Linq\Select.cs (3)
213private protected override Iterator<TResult> Clone() => new ListSelectIterator<TSource, TResult>(_source, _selector); 226_current = _selector(_enumerator.Current); 238new ListSelectIterator<TSource, TResult2>(_source, CombineSelectors(_selector, selector));
System\Linq\Select.SpeedOpt.cs (8)
374Fill(source, results, _selector); 384Fill(source, SetCountAndGetSpan(results, source.Length), _selector); 408_selector(_source[i]); 418return new IListSkipTakeSelectIterator<TSource, TResult>(_source, _selector, count, int.MaxValue); 424return new IListSkipTakeSelectIterator<TSource, TResult>(_source, _selector, 0, count - 1); 432return _selector(_source[index]); 444return _selector(_source[0]); 457return _selector(_source[len - 1]);