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 have two somewhat related problems, shown by the following:

user=> (if (symbol? 5) (meta (var 5)) 5)
CompilerException java.lang.ClassCastException: java.lang.Long cannot be cast to clojure.lang.Symbol, compiling:(NO_SOURCE_PATH:6) 
user=> (defn dometa [x] (if (symbol? x) (meta (var x)) x))
CompilerException java.lang.RuntimeException: Unable to resolve var: x in this context, compiling:(NO_SOURCE_PATH:7) 
user=> 

In the first case, since 5 is not a symbol I would not expect (meta (var 5)) to be evaluated, but it is (or at least that's the way it seems to me).

In the second case, if I want to place the first expression in a function, and parameterize the value being tested, the (var ...) function no longer works.

share|improve this question
var is not a function, it is a special form. – mtyaka Oct 23 '11 at 8:35

1 Answer

up vote 1 down vote accepted

The Var object is looked up at compile time. For the behaviour I'm inferring from your examples, you should use find-var.

user=> (if (symbol? 5) (meta (find-var 5)) 5)
5
user=> (defn dometa [x] (if (symbol? x) (meta (find-var x)) x))
#'user/dometa
share|improve this answer
You probably want resolve, not find-var. I'd never heard of find-var before, but it looks like a lower-level version of resolve. – amalloy Oct 23 '11 at 9:03

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.