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.