Is there a way to fold over multiple sequences, in the same way that
'map' can apply a multi-parameter function over several seqs? In other
words, is there a function like this:

(defn reduce*
        [f val & colls]
        (reduce (fn [acc args] (apply f acc args))
                val
                (apply map vector colls)))

That behaves like this:
(reduce* assoc {} [:one :another] (iterate inc 1))
> {:one 1, :another 2}

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to