请考虑以下示例来检查我的参数:
fun <- function(x, y, z) {
notexist <- is.null(y)
return(notexist)
}
fun(x) # Should return TRUE since y is missing
fun(x,y) # Should return FALSE since y is being passed
我遇到了一个类似的帖子,它使用了三点构造How to check existence of an input argument for R functions。但我不想使用exists,missing,get,hasArg和three-dots构造。但我想通过使用args和is.null()来编写这段代码?没有三点可能吗?