How could I call a function with a string? e.g. something like this:
(call "zero?" 1) ;=> false
Something like:
(defn call [^String nm & args] (when-let [fun (ns-resolve *ns* (symbol nm))] (apply fun args)))
ns-resolve
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
2 years ago
viewed
668 times
active