On 11 Jun 2010, at 08:59, Nathan Sorenson wrote:
> 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}
Perhaps this is an option:
(reduce (partial apply assoc) {} (map vector [:one :another] (iterate inc 1)))
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to [email protected]
Note that posts from new members are moderated - please be patient with your
first post.
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en