check_missing_names: Check Missing Names

View source: R/missing-names.R

check_missing_namesR Documentation

Check Missing Names

Description

Checks whether specific names are missing from an object.

Usage

check_missing_names(x, names, x_name = substitute(x), error = TRUE)

Arguments

x

The named object to check.

names

A character vector of the names that must be missing from x.

x_name

A string of the name of the object x.

error

A flag indicating whether to throw an informative error or immediately generate an informative message if the check fails.

Value

An invisible copy of x (if it doesn't throw an error).

See Also

check_names()

Examples

vec <- c(x = 1, y = 2, z = 0)
check_missing_names(vec, c("y", "x", "a"), error = FALSE)
check_missing_names(vec, "a", error = FALSE)

poissonconsulting/checkr documentation built on Jan. 19, 2025, 12:37 p.m.