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.

How could I call a function with a string? e.g. something like this:

(call "zero?" 1) ;=> false
share|improve this question

1 Answer

up vote 16 down vote accepted

Something like:

(defn call [^String nm & args]
    (when-let [fun (ns-resolve *ns* (symbol nm))]
        (apply fun args)))
share|improve this answer
Thanks, ns-resolve in particular was what I was looking for. – Ashley Williams Oct 3 '10 at 10:28
4  
it's better also to combine ns-resolve together with fn? to check, that symbol is function – Alex Ott Oct 3 '10 at 17:22

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.