all_eq
From unitizer v1.4.6
by Brodie Gaslam
Like all.equal but Returns Empty String If Not all.equal
Used as the default value comparison function since when values mismatch
we use diffObj
which would make the text output from
all.equal
somewhat redundant.
Usage
all_eq(target, current, ...)
Arguments
- target
R object
- current
other R object to be compared to
target
- ...
arguments to pass to
all.equal
Value
TRUE if all.equal
returns TRUE, "" otherwise
all_eq(1, 1L)
all_eq(1, 2)
isTRUE(all_eq(1, 2))
Community examples
Looks like there are no examples yet.