====== BitAND ====== BitAND(, [, ]]) The function returns the result of a bitwise "AND" for the passed values. **Parameters** |< 100% 15% >| |value1|First value.| |value2|Second value.| |valueN|Third and other values.| **Related** [[bitnot]], [[bitor]], [[bitshift]], [[bitxor]] **Remarks** Bitwise operations are performed as 32-bit integers. **Examples** MsgBox(BitAND(17, 1)) # --> 1 MsgBox(BitAND(16, 1)) # --> 0 MsgBox(BitAND(28, 12, 8)) # --> 8 MsgBox(BitAND(2, 3, 6)) # --> 2