本文介绍了Clojure:确定一个函数是否存在的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我如何知道作为字符串提供的函数名称在当前上下文中是否可调用?例如:
how can i know if a function name provided as string is callable or not in the current context? something like:
(callable? "asdasd") ;; false
(callable? "filter") ;; true
感谢
推荐答案
您正在寻找resolve,
You are looking for resolve,
(resolve (symbol "asd"))
返回nil
(resolve (symbol "filter"))
return#'clojure.core / filter
return #'clojure.core/filter
检查var是否为函数(信用到@amalloy):
To check if a var is a function (credit goes to @amalloy):
(-> s symbol resolve deref ifn?)
这篇关于Clojure:确定一个函数是否存在的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!