clojure.zip/insert-right

functionsince v0.0-927 clojure.zip/insert-rightEdit
(insert-right loc item)

Source docstring:
Inserts the item as the right sibling of the node at this loc,
without moving
Source code @ clojurescript:src/main/cljs/clojure/zip.cljs
(defn insert-right
  [loc item]
    (let [[node {r :r :as path}] loc]
      (if (nil? path)
        (throw "Insert at top")
        (with-meta [node (assoc path :r (cons item r) :changed? true)] (meta loc)))))