Search notes:

R function: rep.len

#
#   See also rep()
#

a <- 1:5

b <- rep_len(a, 12)

length(b)
# [1] 12

b
# [1] 1 2 3 4 5 1 2 3 4 5 1 2
Github repository about-r, path: /functions/rep_len.R

See also

rep
Index to (some) R functions

Index