On Wed, 6 Jun 2007, Benilton Carvalho wrote:
> Hi everyone,
>
> say I have a function called 'foo', which takes the argument arg1.
>
> Is there any mechanism that I can use to "learn" about the variable
> where foo(arg1) is going to be stored?
No. This information isn't available explicitly even at the C level.
> For example:
>
> x <- foo(arg1)
>
> so, inside foo() I'd like to be able to get the string "x".
>
> if,
>
> foo(arg1)
>
> was used insted, I'd like to get NA.
It could be much worse that this, for example,
x[[7]][y][[4]] <- foo(arg1)
w <- foo(arg2)+1
names(x)[foo(arg3)] <- foo(arg4)
-thomas
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.