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