(chunks-exact len src)
  len: an int
  src: an arr
  returns an iter
F

Iterates over non-overlapping sub-arrays with an exact size.

Each array produced by the iterator is newly-allocated and mutable, with exactly len elements. If the length of src is not an exact multiple of len, some of its elements will be skipped.

(prn ..(chunks-exact 2 '(0 1 2 3 4))) ; prints (0 1) (2 3)
chunks
rchunks