Where is fmap (or how to apply fn to each map value)

I am trying to apply a function to each map value. fmap does the job. But what namespace has moved?

I also wrote the following implementation, but I think it might be better -

 (defn map-over [fm] (->> (map (fn [[kv]] {k (fv)}) m) (into {}))) 
+5
source share

All Articles