assertions {ympes} | R Documentation |
Argument assertions
Description
Assertions for function arguments. Motivated by vctrs::vec_assert()
but
with lower overhead at a cost of less informative error messages. Designed to
make it easy to identify the top level calling function whether used within a
user facing function or internally.
Usage
assert_integer(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_int(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_double(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_dbl(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_numeric(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_num(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_logical(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_lgl(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_character(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_chr(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_data_frame(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_list(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_scalar_integer(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_scalar_int(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_scalar_integer_not_na(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_scalar_int_not_na(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_scalar_double(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_scalar_dbl(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_scalar_double_not_na(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_scalar_dbl_not_na(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_scalar_numeric(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_scalar_num(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_scalar_numeric_not_na(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_scalar_num_not_na(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_scalar_logical(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_scalar_lgl(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_scalar_whole(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_bool(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_boolean(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_scalar_character(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_scalar_chr(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_scalar_character_not_na(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_scalar_chr_not_na(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_string(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_non_negative_or_na(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_non_positive_or_na(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_non_negative(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_non_positive(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_positive(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_negative(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_positive_or_na(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
assert_negative_or_na(
x,
...,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = NULL
)
Arguments
x |
Argument to check. |
... |
Additional fields that will be added to the resulting error condition |
.arg |
Name of argument being checked (used in error message). |
.call |
Call to use in error message. |
.subclass |
The (optional) subclass of the returned error condition. |
Value
NULL if the assertion succeeds (error otherwise).
Examples
# Use in a user facing function
fun <- function(i, d, l, chr, b) {
assert_scalar_int(i)
TRUE
}
fun(i=1L)
try(fun())
try(fun(i="cat"))
# Use in an internal function
internal_fun <- function(a) {
assert_string(
a,
.arg = deparse(substitute(x)),
.call = sys.call(-1L),
.subclass = "example_error"
)
TRUE
}
external_fun <- function(b) {
internal_fun(a=b)
}
external_fun(b="cat")
try(external_fun())
try(external_fun(b = letters))
tryCatch(external_fun(b = letters), error = class)
[Package ympes version 1.3.0 Index]