assertive.files (version 0.0-2)

assert_all_are_libraries: Is the directory a known R library?

Description

Checks to see if the input directories are known R libraries.

Usage

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))

Arguments

x
Directory paths
severity
How severe should the consequences of the assertion be? Either "stop", "warning", "message", or "none".
.xname
Not intended to be used directly.

Value

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.

Examples

Run this code
is_library(c(.libPaths(), R.home()))

Run the code above in your browser using DataCamp Workspace