I would like to ask if it is possible to copy/move all the objects of one environment to another, at once. For example:
f1 <- function() { print(v1)
To do it:
environment(f1) <- environment(f2) # It does not work
Open the f1 environment and run do this:
f1
ls(load(f2))