4 instantiations of RepeatIterator
System.Linq (4)
System\Linq\Repeat.cs (2)
23return new RepeatIterator<TResult>(element, count); 44return new RepeatIterator<TResult>(_current, _count);
System\Linq\Repeat.SpeedOpt.cs (2)
45return new RepeatIterator<TResult>(_current, _count - count); 57return new RepeatIterator<TResult>(_current, count);