You may write a simple helper function to map all keys with given mapping function: (defn kmap [f m] (into {} (map #(update-in % [0] f) m))).
確定! 回上一頁