Usage
hard_dep_func(x, y, z, ...)
Arguments
- x
Placeholder argument
- y
Placeholder argument
- z
Placeholder argument
- ...
Extra arguments to be passed to function
Value
Nothing, called for printing side-effect.
Examples
# function is designed to error so example is wrapped in a tryCatch()
tryCatch(
hard_dep_func(),
error = function(cnd) message("expected error")
)
#> expected error