isTRUEV {jamba} | R Documentation |
Vectorized isTRUE
Description
Vectorized isTRUE
Usage
isTRUEV(x, ...)
Arguments
x |
vector |
... |
additional arguments are ignored |
Details
This function applies three criteria to an input vector, to determine if each entry in the vector is TRUE:
It must be class
logical
.It must not be
NA
.It must evaluate as
TRUE
.
Value
logical
vector with length matching x
.
See Also
Other jam practical functions:
breakDensity()
,
call_fn_ellipsis()
,
checkLightMode()
,
check_pkg_installed()
,
colNum2excelName()
,
color_dither()
,
exp2signed()
,
getAxisLabel()
,
isFALSEV()
,
jargs()
,
kable_coloring()
,
lldf()
,
log2signed()
,
middle()
,
minorLogTicks()
,
newestFile()
,
printDebug()
,
reload_rmarkdown_cache()
,
renameColumn()
,
rmInfinite()
,
rmNA()
,
rmNAs()
,
rmNULL()
,
setPrompt()
Examples
isTRUEV(c(TRUE, FALSE, NA, TRUE))
[Package jamba version 1.0.4 Index]