Skip to contents

Check Data Types

Usage

assert_type(x, expected, allow_empty = TRUE, allow_null = FALSE)

assert_scalar(x, expected)

assert_function(x)

Arguments

x

An object to be checked.

expected

A character string specifying the expected type. It must be one of "list", "atomic", "vector", "numeric", "integer", "double", "character" or "logical".

allow_empty

A logical scalar: should empty object be allowed?

allow_null

A logical scalar: should NULL object be allowed?

Value

Throws an error, if any, and returns x invisibly otherwise.

Author

N. Frerebeau