array_fill(arr, obj)
Set all elements of the array arr to the object obj. Return void.
arr
obj
let a = #[1, 2, 3] array_fill(a, 100) a // #[100, 100, 100]
Core Module Index | Contents