Skip to main content

Module conditions

Module conditions 

Source
Expand description

R condition system builtins β€” stop, warning, message, signalCondition, condition constructors, condition accessors, and restart invocation.

StaticsΒ§

__BUILTIN_REG_BUILTIN_CONDITION_CALL πŸ”’
__BUILTIN_REG_BUILTIN_CONDITION_MESSAGE πŸ”’
__BUILTIN_REG_BUILTIN_INVOKE_RESTART πŸ”’
__BUILTIN_REG_BUILTIN_SIMPLE_CONDITION πŸ”’
__BUILTIN_REG_BUILTIN_SIMPLE_ERROR πŸ”’
__BUILTIN_REG_BUILTIN_SIMPLE_MESSAGE πŸ”’
__BUILTIN_REG_BUILTIN_SIMPLE_WARNING πŸ”’
__BUILTIN_REG_BUILTIN_STOP πŸ”’
__INTERP_REG_INTERP_MESSAGE πŸ”’
__INTERP_REG_INTERP_SIGNAL_CONDITION πŸ”’
__INTERP_REG_INTERP_WARNING πŸ”’

FunctionsΒ§

builtin_condition_call πŸ”’
Extract the call from a condition object.
builtin_condition_message πŸ”’
Extract the message from a condition object.
builtin_invoke_restart πŸ”’
Invoke a restart by name, transferring control to the corresponding handler.
builtin_simple_condition πŸ”’
Construct a simple condition object.
builtin_simple_error πŸ”’
Construct a simple error condition object.
builtin_simple_message πŸ”’
Construct a simple message condition object.
builtin_simple_warning πŸ”’
Construct a simple warning condition object.
builtin_stop πŸ”’
Signal an error condition and stop execution.
condition_message_str πŸ”’
Extract the message string from a condition object (list with β€œmessage” element).
interp_message πŸ”’
Print a diagnostic message to stderr.
interp_signal_condition πŸ”’
Signal a condition object to calling handlers without unwinding.
interp_warning πŸ”’
Signal a warning condition.
named_bool πŸ”’
Check whether a named argument is a truthy boolean (default default).