Function
EN
Version 1.90
@BitOr
Float
List
Logical
NUMBER
Syntax
@BitOr(FN1;FN2);
@BitOr(FNLIST1;FN2);
@BitOr(FN1;FNLIST2);
@BitOr(FNLIST1;FNLIST2);
Description
Performs a bitwise logical OR on FN/FNLIST FN1/FNLIST1 and FN/FNLIST FN2/FNLIST2 from.
Example: @BitOr(FN1;FN2)
FN1:=2;
FN2:=3;
@BitOr(FN1;FN2);
Example: @BitOr(FNLIST1;FN2)
FNLIST1:=1:2:3:4:5:6:7:8:9;
FN2:=10;
Example: @BitOr(FN1;FNLIST2)
FNLIST2:=11:22:33:44:55:66:77:88:99;
Example: @BitOr(FNLIST1;FNLIST2)
FNLIST1:=1:2:3:4:5:6:7:8:9;
FNLIST1:=1:2:3:4:5:6:7:8:9;
If the two lists have different lengths, the last element of the shorter list is repeated until the required length is reached.
Note : This text was machine-translated and may contain inaccuracies.
