is.null.na {FinNet} | R Documentation |
Function to check whether an object is NA
or NULL
Description
Combines base::is.na(x)
, base::is.null(x)
. When negating
is TRUE
, it integrates also f(x)|> magrittr::not()
.
Usage
is.null.na(x, negating = FALSE)
Arguments
x |
Object on which to operate |
negating |
Whether to return the negation of the result |
Value
Logical, depending on negating
:
if
negating
isFALSE
, it returnsTRUE
ifx
isNA
orNULL
;if
negating
isTRUE
, it returnsTRUE
ifx
is neitherNA
norNULL
.
Author(s)
Telarico, Fabio Ashtar
[Package FinNet version 0.2.1 Index]