(keys t)
  t: a tab
  returns an iter
F

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)
split
values