I have a function f:
f=function(){}
and a variable
var=f
I would like to know how to get the name of the fun
var=f assignes function(){} to var. It only knows that it is a function and 'forgets' about variable name. This code:
function(){}
var
f <- function(){} var <- f
has the same effect as this:
var <- function(){}