Structs§
- Iter 🔒Iterator for
RepeatN
. - Iterator adaptor for the
repeat()
function. - Iterator adaptor for the
repeatn()
function. - Producer for
RepeatN
. - Unindexed producer for
Repeat
.
Functions§
- Creates a parallel iterator that endlessly repeats
elt
(by cloning it). Note that this iterator has “infinite” length, so typically you would want to usezip
ortake
or some other means to shorten it, or consider using therepeatn()
function instead. - Creates a parallel iterator that produces
n
repeats ofelt
(by cloning it).