clojure.zip/insert-left

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

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