Given a function object or name, how can I determine its arity? Something like (arity func-name) .
I hope there is a way, since arity is pretty central in Clojure
|
1
|
Given a function object or name, how can I determine its arity? Something like I hope there is a way, since arity is pretty central in Clojure
|
|||
|
|
|
|
The arity of a function is stored in the metadata of the var.
This requires that the function was either defined using |
|||
|
|
|
Sneaky reflection: (defn arg-count [f] (let [m (first (.getDeclaredMethods (class f))) p (.getParameterTypes m)] (alength p))) |
||
|
|
|
Note, that this really only works for functions defined with defn. It does not work for anonymous functions defined with fn or #(). |
||||
|
|
|
|
||
|