dcolthorp / matchure

Powerful, idiomatic pattern matching for clojure
159 stars 8 forks source link

Specify not qualified class name #8

Open adinapoli opened 13 years ago

adinapoli commented 13 years ago

Hi, I've really appreciated your work, keep updating it :) I've found very verbose having to specify the fully qualified class name in my match: why I can't do, for example:

(cond-match [MyClass foo] foo)

Instead of:

(cond-match [org.mydomain.MyClass foo] foo)

Thanks in advance, Alfredo