(defmacro dothread-keeping-clj [more-bindings & body]
(let [clj-star-syms (filter #(.startsWith #^String (name %) "*")
(keys (ns-publics (find-ns 'clojure.core))))]
`(dothread-keeping [~@clj-star-syms ~@more-bindings]
~@body)))
Comments top
No comments for dothread-keeping-clj. Log in to add a comment.