Clamps Dictionary
repeat
Function
(repeat n elem)
return a list with n occurences of elem. All occurences of elem are #'eq to each other.
Arguments
n |
Integer indicationg the number of iterations |
elem |
Any Lisp Object to be repeated. |
Examples
(repeat 10 5) ;-> (5 5 5 5 5 5 5 5 5 5)
Created: 2025-06-08 So 16:56