Bitwise AND Operator (&)
The bitwise AND operator compares each bit of its first operand to the corresponding bit of its second operand. If both bits are 1, the corresponding result bit is set to 1. Otherwise, the corresponding result bit is set to 0.
Example
INT a := 0b1010; INT b := 0b10011; INT c; c := a & b; // c is 0b10
See Also
XJTAG v4.2.5
