stabilize_arg {stbl} | R Documentation |
Ensure an argument meets expectations
Description
stabilize_arg()
is used by other functions such as stabilize_int()
. Use
stabilize_arg()
if the type-specific functions will not work for your use
case, but you would still like to check things like size or whether the
argument is NULL.
stabilize_arg_scalar()
is optimized to check for length-1 vectors.
Usage
stabilize_arg(
x,
...,
allow_null = TRUE,
allow_na = TRUE,
min_size = NULL,
max_size = NULL,
x_arg = caller_arg(x),
call = caller_env(),
x_class = object_type(x)
)
stabilize_arg_scalar(
x,
...,
allow_null = TRUE,
allow_zero_length = TRUE,
allow_na = TRUE,
x_arg = caller_arg(x),
call = caller_env(),
x_class = object_type(x)
)
Arguments
x |
The argument to stabilize. |
... |
These dots are for future extensions and should be empty. |
allow_null |
Logical. Is NULL an acceptable value? |
allow_na |
Logical. Are NA values ok? |
min_size |
Integer. The minimum size of the object. Object size will be
tested using |
max_size |
Integer. The maximum size of the object. Object size will be
tested using |
x_arg |
Character. An argument name for x. The automatic value will work in most cases, or pass it through from higher-level functions to make error messages clearer in unexported functions. |
call |
The execution environment of the call. See the |
x_class |
Character. The class name of |
allow_zero_length |
Logical. Are zero-length vectors acceptable? |
Value
x
, unless one of the checks fails.
Examples
wrapper <- function(this_arg, ...) {
stabilize_arg(this_arg, ...)
}
wrapper(1)
wrapper(NULL)
wrapper(NA)
try(wrapper(NULL, allow_null = FALSE))
try(wrapper(NA, allow_na = FALSE))
try(wrapper(1, min_size = 2))
try(wrapper(1:10, max_size = 5))
stabilize_arg_scalar("a")
stabilize_arg_scalar(1L)
try(stabilize_arg_scalar(1:10))