Takes any nested combination of sequential things (lists, vectors,
(defn flatten-map "Transforms a map into a vector like [key value key value]." [m] (reduce (fn [coll [k v]] (conj coll k v)) [] m))
Comments top
No comments for flatten-map. Log in to add a comment.