isNothing
Syntax
isNothing(X)
Details
isNothing tests if a function argument is provided by the user.
"Nothing" is one of the two objects in VOID type.
Parameters
X can be of any data type or form.
Returns
Returns a Boolean scalar or vector.
Examples
f=def(x,y): isNothing(y);
f(5,);
// output: true
f(5, NULL);
// output: false
