bitand
Bitwise AND of two integers.
Syntax
Section titled “Syntax”v = bitand(a, b)Description
Section titled “Description”Returns the integer whose bits are set where both a and b have set bits.
Example
Section titled “Example”bitand(12, 10) % 8 (1100 & 1010 = 1000)