clojure.zip/right

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

Source docstring:
Returns the loc of the right sibling of the node at this loc, or nil
Source code @ clojurescript:src/main/cljs/clojure/zip.cljs
(defn right
  [loc]
    (let [[node {l :l  [r & rnext :as rs] :r :as path}] loc]
      (when (and path rs)
        (with-meta [r (assoc path :l (conj l node) :r rnext)] (meta loc)))))