考虑以下功能:
foo <- function (a.list, index = NULL) {
if (is.null(index)) {
a.list[]
}
else {
a.list[index]
}
}
我想知道下面EMPTY_INDEX
的定义是否有foo2
值:
foo2 <- function (a.list, index = EMPTY_INDEX) {
a.list[index]
}
...这会使foo2
等同于foo
。