Open
Description
I find the difference between "repeat" and "repeated" hard to remember.
julia> repeat([1,2], 3)
6-element Vector{Int64}:
1
2
1
2
1
2
julia> collect(Iterators.repeated([1,2], 3))
3-element Vector{Vector{Int64}}:
[1, 2]
[1, 2]
[1, 2]
#47354 proposed Iterators.cycle(itr, n)
for the lazy version of repeat(itr, n)
.