warningp {FastUtils} | R Documentation |
This function provides a wrapper around the base warning
function, adding flexibility to warnings by setting call.
to FALSE
automatically. This modification means that the function call is not included
in the warning message, streamlining the output for users.
warningp(...)
... |
Arguments passed on to |
No return value, this function issues a warning.
try(warningp(
"This is a custom warning message without the call."
), silent = TRUE)