home *** CD-ROM | disk | FTP | other *** search
- <!--- This example shows BitAnd --->
-
- <HTML>
-
- <HEAD>
- <TITLE>BitAnd Example</TITLE>
- </HEAD>
-
- <BASEFONT FACE="Arial, Helvetica" SIZE=2>
- <BODY bgcolor="#FFFFD5">
-
- <H3>BitAnd Example</H3>
-
- Returns the bitwise AND of two long integers.
-
- <P>BitAnd(5,255): <CFOUTPUT>#BitAnd(5,255)#</CFOUTPUT>
-
- <P>BitAnd(5,0): <CFOUTPUT>#BitAnd(5,0)#</CFOUTPUT>
-
- <P>BitAnd(128,128): <CFOUTPUT>#BitAnd(128,128)#</CFOUTPUT>
-
-
- </BODY>
-
- </HTML>
-