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