Liking cljdoc? Tell your friends :D
Clojure only.

wrap.core


unwrapclj

(unwrap fs)
source

wrapclj

(wrap fs wrapper)

takes a set of functions (namespace vars) and a function to wrap them with

i.e. (wrap #{#'app/foo #'app/bar} (fn [f & args] (println "before..") (apply f args) (println "after..")))

takes a set of functions (namespace vars) and a function to wrap them with

i.e. (wrap #{#'app/foo #'app/bar} (fn [f & args]
                                    (println "before..")
                                    (apply f args)
                                    (println "after..")))
sourceraw docstring

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

× close