is_error_free
From assertive.code v0.0-1
by Richard Cotton
Does the code run without throwing an error?
Call the code inside a try block and report if an error was thrown.
Usage
is_error_free(x)
Arguments
- x
Code to check.
Value
TRUE
if the code runs without throwing an error. The result
of running the code is contained in an attribute named "result"
.
Note
Note that this has the side effect of running the code contained in
x
.
Community examples
Looks like there are no examples yet.