Skip to content
New issue

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

first class matching? #2

Open
swannodette opened this issue May 6, 2010 · 0 comments
Open

first class matching? #2

swannodette opened this issue May 6, 2010 · 0 comments

Comments

@swannodette
Copy link

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))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant