invalid: A notion of valid and invalid

View source: R/logical.R

invalidR Documentation

A notion of valid and invalid

Description

An object is valid if it is not null, not missing (NA), and is not an empty vector. Note that this is per se not vectorised, because a non-empty list or vector is valid as such.

Usage

invalid(x)

valid(x)

Arguments

x

Any object, value or NULL

Value

logical

Functions

  • valid: x is not invalid

Examples

invalid(NULL) # TRUE
invalid(NA) # TRUE
invalid(list()) # TRUE
invalid("a") # FALSE
invalid(c(1,2,3)) # FALSE

tidytidbits documentation built on March 18, 2022, 6:10 p.m.