Liking cljdoc? Tell your friends :D
ClojureScript only.

pinkgorilla.ui.walk

 For pinkie tag injection we need a more up to date version
of walk.

https://clojure.atlassian.net/browse/CLJ-2031
https://github.com/clojure/clojurescript/commit/9979feaf69765460238015a8468ba2fc803e3860#diff-f9fd6d8ba81d5a2bb5b7d2cca3289103
raw docstring

postwalkcljs

(postwalk f form)

Performs a depth-first, post-order traversal of form. Calls f on each sub-form, uses f's return value in place of the original. Recognizes all Clojure data structures. Consumes seqs as with doall.

Performs a depth-first, post-order traversal of form.  Calls f on
each sub-form, uses f's return value in place of the original.
Recognizes all Clojure data structures. Consumes seqs as with doall.
sourceraw docstring

prewalkcljs

(prewalk f form)

Like postwalk, but does pre-order traversal.

Like postwalk, but does pre-order traversal.
sourceraw docstring

walkcljs

(walk inner outer form)

Traverses form, an arbitrary data structure. inner and outer are functions. Applies inner to each element of form, building up a data structure of the same type, then applies outer to the result. Recognizes all Clojure data structures. Consumes seqs as with doall.

Traverses form, an arbitrary data structure.  inner and outer are
functions.  Applies inner to each element of form, building up a
data structure of the same type, then applies outer to the result.
Recognizes all Clojure data structures. Consumes seqs as with doall.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close