clojure.zip/edit

functionsince v0.0-927 clojure.zip/editEdit
(edit loc f & args)

Source docstring:
Replaces the node at this loc with the value of (f node args)
Source code @ clojurescript:src/main/cljs/clojure/zip.cljs
(defn edit
  [loc f & args]
    (replace loc (apply f (node loc) args)))