Unenclose a closure.
Unenclose a closure by substituting names for values found in the enclosing environment.
unenclose(f)
f |
a closure |
power <- function(exp) { function(x) x ^ exp } square <- power(2) cube <- power(3) square cube unenclose(square) unenclose(cube)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.