Skip to content

Instantly share code, notes, and snippets.

@noprompt
Created June 18, 2020 22:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save noprompt/d7f586e39549e15e94ba6ea7db439915 to your computer and use it in GitHub Desktop.
Save noprompt/d7f586e39549e15e94ba6ea7db439915 to your computer and use it in GitHub Desktop.
(defn mix*
"Helper function for mix."
{:private true}
[colls]
(if (seq colls)
(if (seq (first colls))
(lazy-seq (cons (ffirst colls)
(mix* (conj (subvec colls 1)
(rest (first colls))))))
(recur (subvec colls 1)))
()))
(defn mix
"Like clojure.core/interleave but exhausts each supplied
collection.
(interleave [1 2 3] [\"a\" \"b\"] [:w :x :y :z])
;; =>
(1 \"a\" :w 2 \"b\" :x)
(mix [1 2 3] [\"a\" \"b\"] [:w :x :y :z])
;; =>
(1 \"a\" :w 2 \"b\" :x 3 :y :z)"
{:arglists '([coll1 coll2 & more-colls])}
([coll1 coll2]
(if (seq coll1)
(lazy-seq (cons (first coll1) (mix coll2 (rest coll1))))
coll2))
([coll1 coll2 coll3]
(if (seq coll1)
(lazy-seq (cons (first coll1) (mix coll2 coll3 (rest coll1))))
(mix coll2 coll3)))
([coll1 coll2 coll3 coll4]
(if (seq coll1)
(lazy-seq (cons (first coll1) (mix coll2 coll3 coll4 (rest coll1))))
(mix coll2 coll3 coll4)))
([coll1 coll2 coll3 coll4 & more-colls]
(mix* (into [coll1 coll2 coll3 coll4] more-colls))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment