Imagine:
myfunct <- function(x, ...){
dots <- list(...)
...
}
How do I distinguish in the course of the function whether dots derived from myfunct('something')
(no dots) or myfunct('something', NULL)
(dots includes explicit NULL
)?
In my experimentation both cases lead to is.null(dots)
equating to TRUE
.