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)