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 / bitand.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  451 b   |  26 lines

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