Golf time!

(defn mapmap [f m]
    (into {} (map (fn [[x y]] [x (f y)]) m)))


On Mar 23, 2:51 pm, Kevin Downey <redc...@gmail.com> wrote:
> (defn mapmap [fn m]
>     (into {} (map #(vector (first %) (fn (second %))) m)))

--~--~---------~--~----~------------~-------~--~----~
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
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