On 11.01.2012 18:49, Simon Urbanek wrote:
On Jan 11, 2012, at 12:08 PM, Taylor Arnold wrote:
R-devel,
I have noticed that making a copy of an object in R prior to using
.Call on the original object can
cause the C code to alter not only the object passed to it but also
the copy in R.
Please see the docs - .Call does *NOT* have a DUP argument - you are responsible for duplication at all times if you make modifications (e.g. using duplicate()).
Cheers,
Simon
x<- 2
y<- x
.Call("addOne", x, DUP=TRUE) # Changing DUP does not alter output
[1] 3
And corresponding simple C code:
"test.c":
#include<R.h>
#include<Rinternals.h>
#include<Rmath.h>
SEXP addOne(SEXP input) {
REAL(input)[0] = REAL(input)[0] + 1;
return R_NilValue;
}
I assume that this is simply a result of lazy loading
In addition to Simon: it is "lazy evalution" rather than lazy loading in this case.