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
user=> (spec-tools.parse/parse-spec (s/nonconforming int?)) {:type nil}
I believe this defmethod is correct though, s/nonconforming only needs to delegate immediately to "pass through" the spec it is wrapping.
s/nonconforming
(defmethod spec-tools.parse/parse-form 'clojure.spec.alpha/nonconforming [_ form options] (spec-tools.parse/parse-spec-with-spec-ref (second form) options))
The text was updated successfully, but these errors were encountered:
PR welcome!
Sorry, something went wrong.
No branches or pull requests
I believe this defmethod is correct though,
s/nonconforming
only needs to delegate immediately to "pass through" the spec it is wrapping.The text was updated successfully, but these errors were encountered: