bitand(X;Y)
Returns the bitwise AND of two 32-bit integers.
Syntax
bitand(X;Y)
Input
Argument | Type | Description |
---|---|---|
X |
integer | A scalar value or the name of a column |
Y |
integer | A scalar value or the name of a column |
Note:
X
and Y
must be 32-bit integers (between -2147483646
and +2147483646).Return Value
Returns an integer value corresponding to the bitwise AND of X
and
Y
.
If X
and/or Y
is N/A, they are handled according to their
internal representation like any other number.