Aliases: fn_env fn_env<-
Keywords:
### ** Examples env <- child_env("base") fn <- with_env(env, function() NULL) identical(fn_env(fn), env)
[1] TRUE
other_env <- child_env("base") fn_env(fn) <- other_env identical(fn_env(fn), other_env)