$and: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(No difference)
|
Latest revision as of 18:43, 9 May 2008
Performs a bit-wise AND comparison against two numbers
$and(number 1, number 2)
Examples
$and(5,6)
Binary values of each:
00000101 00000110
Leaving the bits which are in 5 AND 6
Returns: 4 (00000100)