Expand description
Non-empty iterators that repeat items.
Structs§
- Repeat
- Represents non-empty iterators that repeat the given item endlessly.
- RepeatN
- Represents non-empty iterators that repeat the given item exactly the given number of times.
- Repeat
With - Represents non-empty iterators that repeat items computed from the given function endlessly.
Functions§
- repeat
- Creates
Repeat<T>non-empty iterator that repeats the given item endlessly. - repeat_
n - Creates
RepeatN<T>non-empty iterator that repeats the given item the given number of times. - repeat_
with - Creates
RepeatWith<F>non-empty iterator that repeats items computed from the given function endlessly.