(find path
matcher
&
{:keys [file-visit-options maximum-depth]
:or {file-visit-options [] maximum-depth Integer/MAX_VALUE}})
(walk path
&
{:keys [file-visit-options maximum-depth]
:or {file-visit-options [] maximum-depth Integer/MAX_VALUE}})
(walk-file-tree
path
&
{:keys [pre-visit-directory-fn post-visit-directory-fn visit-file-fn
visit-file-failed-fn file-visit-options maximum-depth initial-value]
:or {pre-visit-directory-fn (fn [_ _ _] {:control :continue})
post-visit-directory-fn (fn [_ _ _] {:control :continue})
visit-file-fn (fn [_ _ _] {:control :continue})
visit-file-failed-fn (fn [_ _ exception] (throw exception))
file-visit-options []
maximum-depth Integer/MAX_VALUE
initial-value nil}})
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close