Skip to main content

partition

functionv1.7

cljs.core/partition

Available in:BBCLJCLJS
(partition [n coll] [n step coll] [n step pad coll])
Returns a lazy sequence of lists of n items each, at offsets step apart. If step is not supplied, defaults to n, i.e. the partitions do not overlap. If a pad collection is supplied, use its elements as necessary to complete last partition up to n items. In case there are not enough padding elements, return a partition with less than n items.

No examples yet. Be the first to add one!