Function
EN
Version 1.90
@BitAnd
Float
List
Logical
NUMBER
Syntax
@BitAnd(FN1;FN2);
@BitAnd(FNLIST1;FN2);
@BitAnd(FN1;FNLIST2);
@BitAnd(FNLIST1;FNLIST2);
Description
Performs a bitwise logical AND on FN/FNLIST FN1/FNLIST1 and FN/FNLIST FN2/FNLIST2 from.
(A 32-bit value is used internally.)
Example: @BitAnd(FN1;FN2)
FN1:=2;
FN2:=3;
@BitAnd(FN1;FN2);
Example: @BitAnd(FNLIST1;FN2)
FNLIST1:=1:2:3:4:5:6:7:8:9;
FN2:=10;
Example: @BitAnd(FN1;FNLIST2)
FNLIST2:=11:22:33:44:55:66:77:88:99;
Example: @BitAnd(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.
