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

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