| identical.integer64 {bit64} | R Documentation |
Identity function for class 'integer64'
Description
This will discover any deviation between objects containing integer64 vectors.
Usage
identical.integer64(
x,
y,
num.eq = FALSE,
single.NA = FALSE,
attrib.as.set = TRUE,
ignore.bytecode = TRUE,
ignore.environment = FALSE,
ignore.srcref = TRUE,
...
)
Arguments
x, y |
Atomic vector of class 'integer64' |
num.eq, single.NA, attrib.as.set, ignore.bytecode, ignore.environment, ignore.srcref |
See |
... |
Passed on to |
Details
This is simply a wrapper to identical() with default arguments
num.eq = FALSE, single.NA = FALSE.
Value
A single logical value, TRUE or FALSE, never NA and never
anything other than a single value.
See Also
==.integer64 identical() integer64()
Examples
i64 <- as.double(NA); class(i64) <- "integer64"
identical(i64-1, i64+1)
identical.integer64(i64-1, i64+1)
[Package bit64 version 4.6.0-1 Index]