Expert
Logger
Type of cal-
culation
Function
Data types
Syntax
Operand1 Operand2
Basic cal-
culations
Addition
bool, int,
float
bool, int,
float
Op
Operand2
Subtraction
bool, int,
float
bool, int,
float
Operand1 -
Operand2
Multiplication
bool, int,
float
bool, int,
float
Operand1 *
Operand2
Division
bool, int,
float
bool, int,
float
Operand1 -
Operand2
Logical
(boolean)
operations
AND
bool, int,
float
bool, int,
float
Operand1 &&
Operand2
OR
bool, int,
float
bool, int,
float
Operand1 ||
Operand2
NOT
bool, int,
float
—
!Operand1
Binary (bit by
bit) operations
AND
bool, int
bool, int
Operand1 &
Operand2
OR
bool, int
bool, int
Operand1 |
Operand2
XOR
bool, int
bool, int
Operand1 ^
Operand2
Negation
bool, int
—
~Operand1
Left shift
(move operand1
to the right by
number of pos-
itions in oper-
and2.)
bool, int
bool, int
Operand1
<< Oper-
and2
Right shift
(move operand1
to the right by
number of pos-
itions in oper-
and2.)
bool, int
bool, int
Operand1
>> Oper-
and2
Operations
Minimum
bool, int,
bool, int,
Min(oper-
154
Delphin Technology AG
Januar 2018
Expert
Logger
Manual