(arr ..args) args: zero or more arguments (any type) returns an arr
F
Constructs a new, mutable array.
The resulting array contains all of the arguments passed to this function.
(ensure (eq? '(1 2 3) (arr 1 2 3)))
(arr ..args) args: zero or more arguments (any type) returns an arr
Constructs a new, mutable array.
The resulting array contains all of the arguments passed to this function.
(ensure (eq? '(1 2 3) (arr 1 2 3)))