Iterates over the values of a table.
The values are returned in an arbitrary order.
(let t #((a 0) (b 1) (c 2)))
(prn (arr ..(values t))) ; prints (2 0 1)
Iterates over the values of a table.
The values are returned in an arbitrary order.
(let t #((a 0) (b 1) (c 2)))
(prn (arr ..(values t))) ; prints (2 0 1)