powered by
Checks whether specific names are missing from an object.
check_missing_names(x, names, x_name = substitute(x), error = TRUE)
The named object to check.
A character vector of the names that must be missing from x.
A string of the name of the object.
A flag indicating whether to throw an informative error or immediately generate an informative message if the check fails.
An invisible copy of x (if it doesn't throw an error).
check_names
# NOT RUN { 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) # }
Run the code above in your browser using DataLab