Skip to main content

lazy-cat

macrov1.7

cljs.core/lazy-cat

Available in:BBCLJCLJS
(lazy-cat [& colls])
Expands to code which yields a lazy sequence of the concatenation of the supplied colls. Each coll expr is not evaluated until it is needed. (lazy-cat xs ys zs) === (concat (lazy-seq xs) (lazy-seq ys) (lazy-seq zs))

No examples yet. Be the first to add one!