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

  1. <!--- This example shows BitSHRN --->
  2.  
  3. <HTML>
  4.  
  5. <HEAD>
  6. <TITLE>BitSHRN Example</TITLE>
  7. </HEAD>
  8.  
  9. <BODY>
  10.  
  11. <H3>BitSHRN Example</H3>
  12.  
  13. Returns the number bitwise shifted without rotation
  14. to the right by count bits.
  15.  
  16. <P>BitSHRN(1,1): <CFOUTPUT>#BitSHRN(1,1)#</CFOUTPUT>
  17. <P>BitSHRN(255,7): <CFOUTPUT>#BitSHRN(255,7)#</CFOUTPUT>
  18. <P>BitSHRN(-2147483548,1): <CFOUTPUT>#BitSHRN(-2147483548,1)#</CFOUTPUT>
  19.  
  20. </BODY>
  21.  
  22. </HTML>       
  23.