先说一点上下文...
我写了一个中缀函数,它本质上取代了成语
x[[length(x) +1]] <- y
..或者只是x <- append(x, y)
用于向量。
这里是:
`%+=%` <- function(x, y) {
xcall <- substitute(x)
xobjname <- setdiff(all.names(xcall), c("[[", "[", ":", "$"))
# if the object doesn't exist, create it
if (!exists(xobjname, parent.frame(), mode = "list") &&
!exists(xobjname, parent.frame(), mode = "numeric") &&
!exists(xobjname, parent.frame(), mode = "character")) {
xobj <- subset(y, FALSE)
} else {
xobj <- eval(xcall, envir = parent.frame())
}
if (is.atomic(xobj)) {
if (!is.atomic(y)) {
stop('Cannot append object of mode ', dQuote(mode(y)),
' to atomic structure ', xobjname)
}
assign(xobjname, append(xobj, y), envir = parent.frame())
return(invisible())
}
if (is.list(xobj)) {
if (is.atomic(y)) {
xobj[[length(xobj) + 1]] <- y
} else {
for (i in seq_along(y)) {
xobj[[length(xobj) + 1]] <- y[[i]]
names(xobj)[length(xobj)] <- names(y[i])
}
}
assign(xobjname, xobj, envir = parent.frame())
return(invisible())
}
stop("Can't append to an object of mode ",
mode(eval(xcall, envir = parent.frame())))
}
它可以按预期与向量或列表一起使用,但其当前形式的限制是我不能将值附加到列表中的项目,例如:
a <- list(a = 1, b = 2)
a$b %+=% 3
到目前为止,我还没有找到如何做到这一点。我尝试了类似以下的方法,但没有效果:
assign("b", append(a$b, 3), envir = as.environment(a))
有任何想法吗?