up vote 16 down vote favorite
3
share [g+] share [fb]

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

link|improve this question

feedback

4 Answers

up vote 22 down vote accepted

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|improve this answer
Superb. Thanks a lot – GabiMe Nov 8 '09 at 15:08
feedback

Sneaky reflection:

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

link|improve this answer
Doesn't work on macros – GabiMe Nov 29 '09 at 10:16
1  
But does work on anonymous functions. +1 – j-g-faustus Sep 19 '11 at 15:44
feedback

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

link|improve this answer
As far as I can see it works for all builtin functions too. For example (:arglists (meta #'+)) or (:arglists (meta #'println)) – GabiMe Nov 8 '09 at 16:01
1  
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 '09 at 7:59
feedback
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|improve this answer
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 – GabiMe Nov 8 '09 at 14:53
feedback

Your Answer

 
or
required, but never shown

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