Thus far, in the first two parts of what is turning into a series, when walking Clojure zippers, weâve been mostly using a pattern like this: (require '(clojure [zip :as zip])) (defn recursion-for-recursion "Walking around doing nothing." [loc] (if (zip/end? loc) loc (recur (zip/next loc)))) Now, obviously, this function wouldnât do anything except run the zipper out to its :end. But that has been
{{#tags}}- {{label}}
{{/tags}}