Displaying 1 result from an estimated 1 matches for "938274".
Did you mean:
932274
2014 Mar 02
1
internal copying in R (soon to be released R-3.1.0
Dear core group,
Which operation in R guarantees to get a true copy of an atomic vector,
not just a second symbol pointing to the same shared memory?
y <- x[]
#?
y <- x
y[1] <- y[1]
#?
Is there any function that returns its argument as a non-shared atomic
but only copies if the argument was shared?
Given an atomic vector x, what is the best official way to find out
whether other