Skip to contents

Checks inherits from class using

inherits(x, class)

Usage

chk_is(x, class, x_name = NULL)

vld_is(x, class)

Arguments

x

The object to check.

class

A string specifying the class.

x_name

A string of the name of object x or NULL.

Value

The chk_ function throws an informative error if the test fails or returns the original object if successful so it can used in pipes.

The vld_ function returns a flag indicating whether the test was met.

Functions

  • vld_is(): Validate Inherits from Class

Examples

chk_is(1, "numeric")
try(chk_is(1L, "double"))
#> Error in eval(expr, envir, enclos) : 
#>   `1L` must inherit from class 'double'.

# vld_is
vld_is(numeric(0), "numeric")
#> [1] TRUE
vld_is(1L, "double")
#> [1] FALSE