Checks whether specific names are missing from an object.
Usage
check_missing_names(x, names, x_name = substitute(x), error = TRUE)
Examples
vec <- c(x = 1, y = 2, z = 0)
check_missing_names(vec, c("y", "x", "a"), error = FALSE)
#> Warning: `check_missing_names()` was deprecated in checkr 0.5.1.
#> ℹ Please use chk::chk_not_subset(names()) instead.
#> Warning: vec must not have names 'y' and 'x'
check_missing_names(vec, "a", error = FALSE)