我有func1
和func2
我想测试我是否已将func1
或func2
放入另一个函数F
作为参数
F<-function(FUN){
if(FUN==func1){
#do this
}else if(FUN==func2){
#do this
}else{
#do this
}
}
我有办法检查FUN==func1
或FUN==func2
,以便返回逻辑TRUE或FALSE吗?这显然是错误的,因为==
不能用于测试函数名称