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