Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/basilisp/core.lpy
Original file line number Diff line number Diff line change
Expand Up @@ -2764,7 +2764,7 @@
(lazy-seq
(when-let [coll (seq coll)]
(let [colls (map seq colls)]
(when (every? some? colls)
(when (every? identity colls)
(cons (apply f (first coll) (map first colls))
(apply map f (rest coll) (map rest colls)))))))))

Expand Down Expand Up @@ -3055,7 +3055,7 @@
(lazy-seq
(when-let [coll (seq coll)]
(let [colls (map seq colls)]
(when (every? some? colls)
(when (every? identity colls)
(concat (apply coll-firsts coll colls)
(apply interleave (rest coll) (map rest colls))))))))))

Expand Down
Loading