Functions for Sequences (Generators)
BIN_AND()
Bitwise AND
integer type (the widest type of the arguments)
Note
|
|
BIN_AND (number, number [, number ...])
Parameter | Description |
---|---|
number |
A number of an integer type |
Returns the result of the bitwise AND operation on the argument(s).
BIN_NOT()
Bitwise NOT
integer type matching the argument
Note
|
|
BIN_NOT (number)
Parameter | Description |
---|---|
number |
A number of an integer type |
Returns the result of the bitwise NOT operation on the argument, i.e. one’s complement.
[fblangref50-scalarfuncs-bin-or], [fblangref50-scalarfuncs-bin-xor] and others in this set.
BIN_OR()
Bitwise OR
integer type (the widest type of the arguments)
Note
|
|
BIN_OR (number, number [, number ...])
Parameter | Description |
---|---|
number |
A number of an integer type |
Returns the result of the bitwise OR operation on the argument(s).