powered by
Unenclose a closure by substituting names for values found in the enclosing environment.
unenclose(f)
a closure
power <- function(exp) { function(x) x ^ exp } square <- power(2) cube <- power(3) square cube unenclose(square) unenclose(cube)
Run the code above in your browser using DataLab