public class AstIsNa extends AstBuiltin<AstIsNa>
Constructor and Description |
---|
AstIsNa() |
Modifier and Type | Method and Description |
---|---|
java.lang.String[] |
args()
List of argument names.
|
Val |
exec(Val... args)
Most Ast* functions will want to override this method.
|
int |
nargs()
Number of function's arguments + 1.
|
java.lang.String |
str()
String representation of this Ast object in the Rapids language.
|
apply
description, example, exec
asBytes, clone, copyOver, frozenType, read, readExternal, readJSON, reloadFromBytes, toJsonBytes, toJsonString, write, writeExternal, writeJSON
public java.lang.String[] args()
AstPrimitive
args
in class AstPrimitive<AstIsNa>
public java.lang.String str()
AstRoot
AstPrimitive
s this is the name of the function; for
AstParameter
s this is either the name of the variable, or the
value of the numeric constant that the parameter represents. For more
complicated constructs such as AstExec
or AstFunction
this method should return those objects as a Rapids string.public int nargs()
AstPrimitive
nargs
in class AstPrimitive<AstIsNa>
public Val exec(Val... args)
AstBuiltin
exec
in class AstBuiltin<AstIsNa>