We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mi/collect!
As discussed on Slack, this code provided by @ikitommi works fine:
(ns demo) (defn plus "adds two numbers together" {:malli/schema [:=> [:cat :int :int] :int]} [z y] (+ z y)) (require '[malli.instrument]) (malli.instrument/collect! {:ns 'demo}) ;#{{:clj {demo {plus {:schema [:=> [:cat :int :int] :int] ; :ns demo, :name plus}}}}}
But (malli.instrument/collect!) without arguments does not. It gives something like:
(malli.instrument/collect!)
Syntax error (ClassNotFoundException) compiling at ... demo
Per request I created this issue.
ikitommi: Ugh, that doesn't look right. Not using the 0-arity, it's clearly broken. ikitommi: Issue welcome, should be easy to fix
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
As discussed on Slack, this code provided by @ikitommi works fine:
But
(malli.instrument/collect!)
without arguments does not. It gives something like:Per request I created this issue.
The text was updated successfully, but these errors were encountered: