cfunction (array/clear arr) Empties an array, setting it's count to 0 but does not free the backing capacity. Returns the modified array.
(def a @[23 42]) (array/clear a) (pp a) # => prints @[]