AST_Function
Defines AST of an Expression Function
TypeScript
export type AST_Function = {
type: string;
args: AST_Expression[];
range?: [number, number];
metaInfo?: PredicateType;
};Defines AST of an Expression Function
export type AST_Function = {
type: string;
args: AST_Expression[];
range?: [number, number];
metaInfo?: PredicateType;
};