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
I note that it's not possible to do the following:
(def my-match {:foo java.lang.Integer}) (if-match [my-match {:foo 1}] true)
This could be cool since you define types ahead of time and use them conveniently in pre/post:
(def typea {:baz java.lang.String}) (def typeb {:woz java.lang.String}) (defn bar [x y] {:pre [(match? [typea x]) (match? [typeb y])] :post [(match? [typea %])]} (merge x y))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I note that it's not possible to do the following:
This could be cool since you define types ahead of time and use them conveniently in pre/post:
The text was updated successfully, but these errors were encountered: