Description Usage Arguments Value See Also Examples
Checks to see if the input is a list.
1 2 3 4 5 6 7 | assert_is_list(x, severity = getOption("assertive.severity", "stop"))
assert_is_pairlist(x, severity = getOption("assertive.severity", "stop"))
is_list(x, .xname = get_name_in_parent(x))
is_pairlist(x, .xname = get_name_in_parent(x))
|
x |
Input to check. |
severity |
How severe should the consequences of the assertion be?
Either |
.xname |
Not intended to be used directly. |
is_list
wraps is.list
, providing more
information on failure.
1 2 3 4 5 6 7 | assert_is_list(list(1,2,3))
assert_is_pairlist(.Options)
#These examples should fail.
assertive.base::dont_stop({
assert_is_list(1:10)
assert_is_pairlist(options())
})
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.