Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm new to Clojure and trying to learn the basics. One thing that tripped me up is understanding the correlation between the data structures and the functions they use.

For instance, if I create a new Vector:

(def my-vec [1 2 3])

Then when I try to call my-vec:

(my-vec)

I get:

ArityException Wrong number of args (0) passed to: PersistentVector  clojure.lang.AFn.throwArity (AFn.java:437)

I know that I can pass an argument and it appears to be calling get but how do I know? What args does PersistentVector take and where do I find documentation about it?

I tried:

(doc PersistentVector)

But that returns nil.

share|improve this question

3 Answers

up vote 3 down vote accepted

Documentation can be found under IPersistentVector here: http://clojure.org/data_structures

In particular: Vectors implement IFn, for invoke() of one argument, which they presume is an index and look up in themselves as if by nth, i.e. vectors are functions of their indices.

share|improve this answer
That helps! So when I do (my-vec) or (my-vec 1) it calls invoke() which for IPersistentVector calls nth? – James Ward Aug 10 '12 at 6:32
1  
Found the answer in the code: github.com/clojure/clojure/blob/master/src/jvm/clojure/lang/… – James Ward Aug 10 '12 at 6:44

If you pass a number to a Clojure vector the vector will use that number as an index into it's self and return the value at that index:

user> (def my-vec [1 2 3 4 5])
#'user/my-vec
user> (my-vec 2)
3

this allows you to write expressions like this which grab several keys out of a vec

user> (map my-vec [1 3 4])
(2 4 5)
share|improve this answer
Hmmm I guess someone got confused with your statement 'look that number up' and that caused a down vote.. Please make it clear that the number is an index and not a value in vector – Ankur Aug 10 '12 at 6:41
fixed :) though i suspect someone just down-voted all the answers in this question – Arthur Ulfeldt Aug 10 '12 at 6:45
The other answer with down-vote is incorrect anyway – Ankur Aug 10 '12 at 6:52
Sorry Arthur. I down voted this because it doesn't answer my actual question. My question wasn't about why I was getting an error. It was about how do I find what function is getting called. invoke() is the magic piece that I didn't know about. – James Ward Aug 10 '12 at 7:04

my-vec isn't a function, so you should call: my-vec not (my-vec)

Try: (nth my-vec i) for get i-th element of this vector.

link: nth

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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