Last active
November 6, 2021 15:43
-
-
Save mfikes/a55943aa4533ed1a051023cebeed5d46 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require '[cljs-bean.core :refer [->clj ->js]]) | |
(defn update-vals | |
"m f => {k (f v) ...} | |
Given a map m and a function f of 1-argument, returns a new map where the keys of m | |
are mapped to result of applying f to the corresponding values of m." | |
{:added "1.11"} | |
[m f] | |
(with-meta | |
(persistent! | |
(reduce-kv (fn [acc k v] (assoc! acc k (f v))) | |
(if (implements? IEditableCollection m) | |
(transient m) | |
(transient {})) | |
m)) | |
(meta m))) | |
(clj->js (update-vals (js->clj #js {:a 1 :b 2 :c 3 :d 4}) inc)) | |
;; => #js {:a 2, :b 3, :c 4, :d 5} | |
(->js (update-vals (->clj #js {:a 1 :b 2 :c 3 :d 4}) inc)) | |
;; => #js {:a 2, :b 3, :c 4, :d 5} 3.2x faster |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment