utils_execute {podcleaner} | R Documentation |
Execute function
Description
Executes the function provided. Execution can be silenced via the verbose
parameter.
Usage
utils_execute(verbose, fun, ...)
Arguments
verbose |
Boolean specifying whether to silence the function execution
( |
fun |
Function to execute provided as an expression. |
... |
Argument(s) to be passed to the function above for execution. |
Value
Whatever the provided function returns.
Examples
## Not run:
utils_execute(TRUE, message, "I'm showing in console")
## End(Not run)
[Package podcleaner version 0.1.2 Index]