home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / bitnot.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  376 b   |  23 lines

  1. <!--- This example shows BitNot --->
  2.  
  3. <HTML>
  4.  
  5. <HEAD>
  6. <TITLE>BitNot Example</TITLE>
  7. </HEAD>
  8.  
  9. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  10. <BODY  bgcolor="#FFFFD5">
  11.  
  12. <H3>BitNot Example</H3>
  13.  
  14. Returns the bitwise NOT of a long integer.
  15.  
  16. <P>BitNot(0): <CFOUTPUT>#BitNot(0)#</CFOUTPUT>
  17.  
  18. <P>BitNot(255): <CFOUTPUT>#BitNot(255)#</CFOUTPUT>
  19.  
  20. </BODY>
  21.  
  22. </HTML>       
  23.