|
BitNot
DescriptionPerforms
a bitwise logical NOT operation.
ReturnsA number;
the bitwise NOT of a long integer.
Function syntaxBitNot(number)
Parameters
Parameter
|
Description
|
number
|
32-bit signed integer
|
UsageBit functions
operate on 32-bit signed integers, in the range -2147483648 – 2147483647.
Example<h3>BitNot Example</h3>
<p>Returns the bitwise NOT of a long integer.</p>
<p>BitNot(0): <cfoutput>#BitNot(0)#</cfoutput></p>
<p>BitNot(255): <cfoutput>#BitNot(255)#</cfoutput></p>
|