vote up 5 vote down star
1

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

flag

4 Answers

vote up 13 vote down check

The arity of a function is stored in the metadata of the var.

(:arglists (meta #'str))
;([] [x] [x & ys])

This requires that the function was either defined using defn, or the :arglists metadata supplied explicitly.

link|flag
Superb. Thanks a lot – bugspy.net Nov 8 at 15:08
vote up 1 vote down

Sneaky reflection:

(defn arg-count [f] (let [m (first (.getDeclaredMethods (class f))) p (.getParameterTypes m)] (alength p)))

link|flag
Doesn't work on macros – bugspy.net Nov 29 at 10:16
vote up 2 vote down

Note, that this really only works for functions defined with defn. It does not work for anonymous functions defined with fn or #().

link|flag
As far as I can see it works for all builtin functions too. For example (:arglists (meta #'+)) or (:arglists (meta #'println)) – bugspy.net Nov 8 at 16:01
core functions fall into the "defn" category. For example (def my-identity1 (fn [x] x)) will not work, while (defn my-identity2 [x] x) will work. defn sets :arglists for you in the metadata. core functions either use defn or set :arglists manually. Note: it does also not work for multimethods. You have to set :arglists manually there: (defmulti my-method {:arglists '([foo bar])} (fn [& args] (vec (map type args)))). So relying on :arglists is flawed at best. – kotarak Nov 12 at 7:59
vote up -2 vote down
user=> (defn test-func
         ([p1] "Arity was 1.")
         ([p1 p2] "Arity was 2.")
         ([p1 p2 & more-args] (str "Arity was " (+ 2 (count more-args)))))
#'user/test-func
user=> (test-func 1)
"Arity was 1."
user=> (test-func 1 2)
"Arity was 2."
user=> (test-func 1 2 3)
"Arity was 3"
user=> (test-func 1 2 3 4)
"Arity was 4"
user=> (test-func 1 2 3 4 5) ;...
"Arity was 5"
link|flag
I don't want to execute the function in order to know its arity. And I don't want to change the function code for this – bugspy.net Nov 8 at 14:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.