Description Usage Arguments Details Value Examples
This function can be used in 3 ways:
Return TRUE or FALSE depending on whether the argument checks are
passed. This is suitable e.g. for if statements that take further action
if the argument does not pass the checks.
Throw an exception if the argument does not pass the checks. This is
suitable e.g. when no further action needs to be taken other than
throwing an exception if the argument does not pass the checks.
Same as (2) but by supplying a default value, a default can be assigned
in a single statement, when the argument is NULL. The checks are still
performed on the returned value, and an exception is thrown when not
passed.
1 2 |
argument |
See checkarg function. |
default |
See checkarg function. |
stopIfNot |
See checkarg function. |
message |
See checkarg function. |
argumentName |
See checkarg function. |
Actual call to checkarg: checkarg(argument, "N", default = default, stopIfNot = stopIfNot, nullAllowed = FALSE, n = 1, zeroAllowed = TRUE, negativeAllowed = FALSE, positiveAllowed = FALSE, nonIntegerAllowed = TRUE, naAllowed = FALSE, nanAllowed = FALSE, infAllowed = FALSE, message = message, argumentName = argumentName)
See checkarg function.
1 2 3 4 5 6 | isZeroScalar(0)
# returns TRUE (argument is valid)
isZeroScalar("X")
# returns FALSE (argument is invalid)
#isZeroScalar("X", stopIfNot = TRUE)
# throws exception with message defined by message and argumentName parameters
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.