isPositiveNumberOrInfVector(argument, default = NULL, stopIfNot = FALSE,
n = NA, message = NULL, argumentName = NULL)
isPositiveNumberOrInfVector(2)
# returns TRUE (argument is valid)
isPositiveNumberOrInfVector("X")
# returns FALSE (argument is invalid)
#isPositiveNumberOrInfVector("X", stopIfNot = TRUE)
# throws exception with message defined by message and argumentName parameters
isPositiveNumberOrInfVector(2, default = 1)
# returns 2 (the argument, rather than the default, since it is not NULL)
#isPositiveNumberOrInfVector("X", default = 1)
# throws exception with message defined by message and argumentName parameters
isPositiveNumberOrInfVector(NULL, default = 1)
# returns 1 (the default, rather than the argument, since it is NULL)
Run the code above in your browser using DataLab