Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.