still.identical {bit} | R Documentation |
Test for C-level identity of two atomic vectors
still.identical(x, y)
x |
an atomic vector |
y |
an atomic vector |
logical scalar
x <- 1:2
y <- x
z <- copy_vector(x)
still.identical(y,x)
still.identical(z,x)