cljs.spec.test.alpha/checkable-syms

macropreviously cljs.spec.test/checkable-syms clojure.spec.test.alpha/checkable-symsEdit
(checkable-syms)
(checkable-syms opts)

Source docstring:
Given an opts map as per check, returns the set of syms that
can be checked.
Source code @ clojurescript:src/main/cljs/cljs/spec/test/alpha.cljc
(defmacro checkable-syms
  ([]
   `(checkable-syms nil))
  ([opts]
   `(let [opts# ~opts]
      (validate-check-opts opts#)
      (reduce conj #{}
        '[~@(filter fn-spec-name? (keys @(registry-ref)))
          ~@(keys (:spec opts))]))))