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

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