all.equal.nanotime {nanotime} | R Documentation |
Test if Two Objects are (Nearly) Equal
Description
Compare target
and current
testing ‘near
equality’. If they are different, comparison is still made to
some extent, and a report of the differences is returned. Do not
use all.equal
directly in if
expressions—either
use isTRUE(all.equal(....))
or identical
if
appropriate.
Usage
## S3 method for class 'nanotime'
all.equal(
target,
current,
tolerance = sqrt(.Machine$double.eps),
scale = NULL,
countEQ = FALSE,
formatFUN = function(err, what) format(err),
...,
check.attributes = TRUE
)
## S4 method for signature 'nanotime'
all.equal(
target,
current,
tolerance = sqrt(.Machine$double.eps),
scale = NULL,
countEQ = FALSE,
formatFUN = function(err, what) format(err),
...,
check.attributes = TRUE
)
Arguments
target , current |
|
tolerance |
numeric >= 0. Differences smaller than
|
scale |
|
countEQ |
logical indicating if the |
formatFUN |
a |
... |
further arguments for different methods |
check.attributes |
logical indicating if the |
See Also
identical
, isTRUE
,
==
, and all
for exact equality
testing.