clojure.zip/down

functionsince v0.0-927 clojure.zip/downEdit
(down loc)

Source docstring:
Returns the loc of the leftmost child of the node at this loc, or
nil if no children
Source code @ clojurescript:src/main/cljs/clojure/zip.cljs
(defn down
  [loc]
    (when (branch? loc)
      (let [[node path] loc
            [c & cnext :as cs] (children loc)]
        (when cs
          (with-meta [c {:l [] 
                         :pnodes (if path (conj (:pnodes path) node) [node]) 
                         :ppath path 
                         :r cnext}] (meta loc))))))