用作“空索引”的值

时间:2016-09-27 18:57:38

标签: r

考虑以下功能:

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

0 个答案:

没有答案