Sybernet / Supplied Functions Reference
Release 3.00
Oct 14, 2002
backwards forwards

HTTP.BITOR

This function returns the result of oring two numbers.

Syntax

FUNCTION BITOR
(
    BITE1                         BINARY_INTEGER
,   BITE2                         BINARY_INTEGER
)
RETURN BINARY_INTEGER;

Parameters

Parameter Description
bite1
 
A numeric value.
bite2
 
A numeric value.

Returns

BINARY_INTEGER

Example

The following example illustrate how to or two numbers.

declare
    w binary_integer;
begin
    w:=http.bitor(1,2);
    http.write(w);
end;



Sybernet is a trademark of SRI International.
Copyright © 1996-2008 SRI International. All Rights Reserved.
Denis D. Workman / http://Sybernet.sri.com/