Binary AND
|
Signature |
|---|
|
Binary_And(expression1, expression2) |
|
Description |
|---|
|
Performs a bitwise AND of two values. |
|
Result |
|---|
|
Bitwise AND of expression1 and expression2. |
|
Arguments |
|
|---|---|
|
expression1 |
An expression which is treated as a binary number. |
|
expression2 |
An expression which is treated as a binary number. Numeric values can be written as binary (with a 0b prefix), hexadecimal (with a 0x prefix) or as a decimal number. |