Skip to content

Instantly share code, notes, and snippets.

@ericnormand
Created August 16, 2013 02:26
Show Gist options
  • Select an option

  • Save ericnormand/6246733 to your computer and use it in GitHub Desktop.

Select an option

Save ericnormand/6246733 to your computer and use it in GitHub Desktop.
A function to tell you the possible arities of a function.
(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