hasNull
Syntax
hasNull(X)
Arguments
X is a scalar/vector/matrix/table.
Details
Examples
hasNull NULL;
// output
1
x=00f;
hasNull x;
// output
1
hasNull 5;
// output
0
hasNull(1 2 NULL 4 NULL 6);
// output
1
x=((NULL,1),2);
hasNull x;
// output
0
m=(1 NULL 3 4 5 6)$2:3;
hasNull m;
// output
1
t=table(`AAPL`IBM`MSFT as sym, 2200 NULL 4500 as qty);
hasNull(t);
// output
1