clojure.zip/left

functionsince v0.0-927 clojure.zip/leftEdit
(left loc)

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