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 bd5ef47 commit 7b0acc0Copy full SHA for 7b0acc0
R/qenv-c.R
@@ -89,7 +89,9 @@ c.qenv <- function(...) {
89
stop(join_validation)
90
}
91
92
- x@code <- union(x@code, y@code)
+ x_id <- vapply(x@code, attr, which = "id", integer(1))
93
+ y_id <- vapply(y@code, attr, which = "id", integer(1))
94
+ x@code <- c(x@code, y@code[!y_id %in% x_id])
95
96
# insert (and overwrite) objects from y to x
97
x@.xData <- rlang::env_clone(x@.xData, parent = parent.env(.GlobalEnv))
0 commit comments