| logical3 {hutilscpp} | R Documentation |
Vectorized logical with support for short-circuits
Description
Vectorized logical with support for short-circuits
Usage
and3(x, y, z = NULL, nas_absent = FALSE)
or3(x, y, z = NULL)
Arguments
x, y, z |
Logical vectors. If |
nas_absent |
(logical, default: |
Value
For and3, the same as x & y & z;
for or3, the same as x | y | z, designed to be efficient when component-wise
short-circuiting is available.
[Package hutilscpp version 0.10.5 Index]