stabilize_present() was renamed to assert_present() because it doesn't
stabilize (coerce) x in any way; it only asserts that x is not NULL.
Calling stabilize_present() now throws an error directing you to
assert_present() instead.
Usage
stabilize_present(x, x_arg = caller_arg(x), call = caller_env())Arguments
- x
The object to stabilize.
- x_arg
(
character(1)) The name of the object being stabilized to use in error messages. The automatic value will work in most cases, or pass it through from higher-level functions to make error messages clearer in unexported functions.- call
(environment)The execution environment to mention as the source of error messages.