is there a way to test whether two objects are identical in the R language?
For clarity: I do not mean identical in the sense of the identical function,
which compares objects based on certain properties like numerical values or logical values etc.
I am really interested in object identity, which for example could be tested using the is operator in the Python language.
UPDATE: A more robust and faster implementation of
address(x)(not using.Internal(inspect(x))) was added to data.table v1.8.9. From NEWS :There’s probably a neater way but this seems to work.
You could modify it to work on 32bit by changing
17to9.