installr (version 0.21.0)

is.empty: Checks if an object is empty (e.g: of zero length)

Description

Checks if an object is empty (e.g: of zero length) and returns TRUE/FALSE

Usage

is.empty(x, mode = NULL, ...)

Arguments

x

an object

mode

is the object an empty (zero length) object of this mode (can be "integer", "numeric", and so on...)

...

none are available.

Value

Returns TRUE/FALSE if the object is empty or not.

Details

Uses identical and avoids any attribute problems by using the fact that it is the empty set of that class of object and combine it with an element of that class.

See Also

integer, identical

Examples

Run this code
# NOT RUN {
is.empty(integer(0)) #TRUE
is.empty(0L)         #FALSE
is.empty(numeric(0)) #TRUE
is.empty(NA) # FALSE 
is.empty(FALSE) # FALSE 
is.empty(NULL) # FALSE (with a warning)

a <- which(1:3 == 5)
b <- numeric(0)
is.empty(a)
is.empty(a,"numeric")
is.empty(b)
is.empty(b,"integer")

# }

Run the code above in your browser using DataCamp Workspace