Learn R Programming

erratum (version 2.2.0)

skip: Skip

Description

Skip the rest of the function; calls return() in the parent function if any object is an error or (optionally) a warning.

Usage

skip(..., w = FALSE)

Arguments

...

Objects to check, if any of them is an Error then it calls return() in the parent function, this can optionally be applied if any object is a Warning with the w argument.

w

Whether to also skip is there are Warning.