Hi, if you only dispatch on types you can do it like this:
(derive Object ::any) ; Also derive all of your ::keyword types from ::any. (defmulti foo #(vec (map type %&))) (defmethod foo [::any Integer] ...) But this won't work if you dispatch on actual values as you did in your example. For that there is no way to specify wildcars, AFAIK. Sincerely Meikel -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en