| assert_all_are_libraries {assertive.files} | R Documentation |
Checks to see if the input directories are known R libraries.
assert_all_are_libraries(x, severity = getOption("assertive.severity",
"stop"))
assert_any_are_libraries(x, severity = getOption("assertive.severity",
"stop"))
is_library(x, .xname = get_name_in_parent(x))
x |
Directory paths |
severity |
How severe should the consequences of the assertion be?
Either |
.xname |
Not intended to be used directly. |
is_library returns TRUE if and only if the input
paths are known R package libraries. That is, they must be paths
returned by .libPaths.
Input paths are converted to character, and then normalized using
normalizePaths.
is_library(c(.libPaths(), R.home()))