Learn R Programming

assertive (version 0.2-6)

assert_is_loaded: Is the input DLL loaded?

Description

Checks to see if the input DLL (a.k.a. shared object) is loaded.

Usage

assert_is_loaded(x)

is_loaded(x, PACKAGE = "", type = "", .xname = get_name_in_parent(x))

Arguments

x
Input to check.
PACKAGE
Passed to is.loaded.
type
Passed to is.loaded.
.xname
Not intended to be used directly.

Value

  • is_loaded wraps is.loaded, providing more information on failure. assert_is_loaded returns nothing but throws an error if is_loaded returns FALSE.

See Also

is.loaded.