|
BitAnd
DescriptionPerforms
a bitwise logical AND operation.
ReturnsThe
bitwise AND of two long integers.
Function syntaxBitAnd(number1, number2)
Parameters
Parameter
|
Description
|
number1
|
32-bit signed integer
|
number2
|
32-bit signed integer
|
UsageBit functions
operate on 32-bit signed integers, in the range -2147483648 – 2147483647.
Example<h3>BitAnd Example</h3>
<p>Returns the bitwise AND of two long integers.</p>
<p>BitAnd(5,255): <cfoutput>#BitAnd(5,255)#</cfoutput></p>
<p>BitAnd(5,0): <cfoutput>#BitAnd(5,0)#</cfoutput></p>
<p>BitAnd(128,128): <cfoutput>#BitAnd(128,128)#</cfoutput></p>
|