home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 1999 April / APC443.iso / features / grpware / coldfus / coldfusi.exe / data1.cab / Documentation / snippets / bitand.cfm < prev    next >
Encoding:
Text File  |  1998-10-08  |  389 b   |  25 lines

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