powered by
Checks whether an object is an atomic vector with one element.
check_scalar(x, values = NULL, named = FALSE, attributes = named, only = FALSE, x_name = substitute(x), error = TRUE)
The object to check.
NULL or a vector specifying the values.
A flag indicating whether the scalar must be named or unnamed or NA if it doesn't matter if the scalar is named.
A flag indicating whether the scalar must or must not have attributes or NA if it doesn't matter if the scalar is named.
A flag indicating whether only the actual values are permitted. It only affects values with two or less non-missing elements.
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_vector
# NOT RUN { check_scalar(1) check_scalar(c(1,2), error = FALSE) check_scalar(1, c(2,3), error = FALSE) # }
Run the code above in your browser using DataLab