Skip to main content

seq

functionv1.0

clojure.core/seq

Available in:BBCLJCLJS
(seq [coll])
Returns a seq on the collection. If the collection is empty, returns nil. (seq nil) returns nil. seq also works on Strings, native Java arrays (of reference types) and any objects that implement Iterable. Note that seqs cache values, thus seq should not be used on any Iterable whose iterator repeatedly returns the same mutable object.

No examples yet. Be the first to add one!