We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55149c2 commit e93e097Copy full SHA for e93e097
R/qenv-c.R
@@ -89,8 +89,8 @@ c.qenv <- function(...) {
89
stop(join_validation)
90
}
91
92
- x_id <- vapply(x@code, attr, which = "id", integer(1))
93
- y_id <- vapply(y@code, attr, which = "id", integer(1))
+ x_id <- get_code_attr(x, "id")
+ y_id <- get_code_attr(y, "id")
94
x@code <- c(x@code, y@code[!y_id %in% x_id])
95
96
# insert (and overwrite) objects from y to x
0 commit comments