Check if an argument is named
Arguments
- x
[
any]
Object to check.- type
[
character(1)]
Select the check(s) to perform. “unnamed” checksxto be unnamed. “named” (default) checksxto be named which excludes names to beNAor empty (""). “unique” additionally tests for non-duplicated names. “strict” checks for unique names which comply to R's variable name restrictions. Note that for zero-lengthxevery name check evaluates toTRUE.- .var.name
[
character(1)]
Name of the checked object to print in assertions. Defaults to the heuristic implemented invname.- add
[
AssertCollection]
Collection to store assertion messages. SeeAssertCollection.
Value
Depending on the function prefix:
If the check is successful, the functions
assertNamed/assert_named return
x invisibly, whereas
checkNamed/check_named and
testNamed/test_named return
TRUE.
If the check is not successful,
assertNamed/assert_named
throws an error message,
testNamed/test_named
returns FALSE,
and checkNamed/check_named
return a string with the error message.
The function expect_named always returns an
expectation.
Note
These function are deprecated and will be removed in a future version.
Please use checkNames instead.
See also
Other attributes:
checkClass(),
checkMultiClass(),
checkNames()
Examples
x = 1:3
testNamed(x, "unnamed")
#> [1] TRUE
names(x) = letters[1:3]
testNamed(x, "unique")
#> [1] TRUE