
Always check whether R output is really nice
check_always.Rd
check_always()
creates a task callback function
to check whether all R output is nice.
uncheck_always()
disables the task callback function,
returning your R session to normal behavior.
Arguments
- verbose
If
TRUE
, prints a message whencheck_always()
anduncheck_always()
are run. Defaults toTRUE
.
Examples
check_always()
#> Now checking whether all output is nice
23 * 3
#> [1] 69
#> Nice!
uncheck_always()
#> No longer checking whether all output is nice
23 * 3
#> [1] 69