Created
August 16, 2013 02:26
-
-
Save ericnormand/6246733 to your computer and use it in GitHub Desktop.
A function to tell you the possible arities of a function.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defn arities [f] | |
| (sort (for [m (.getDeclaredMethods (class f)) | |
| :when (= "invoke" (.getName m))] | |
| (alength (.getParameterTypes m))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment