home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 139 / dpcs0999.iso / Web / CFserver / data1.cab / Documentation / snippets / bitshln.cfm < prev    next >
Encoding:
Text File  |  1999-04-12  |  536 b   |  25 lines

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