integer1
bitand
integer2
Parameters:
| integer1 |
Integer |
First argument |
| integer2 |
Integer |
Second argument |
Description:
Reports the value of bitwise-and on the inputs.
Examples:
2 bitand 3 returns 2. This statement is executed in binary form as 0010 and 0011, which returns 0010.
Related Commands:
bitnot
bitor
bitxor