Table of Contents
The Logic library includes operators for logic operations such as comparisons and Boolean operations.
The following list summarizes all Operators of Library Logic
Operator Name | Short Description | available since | |
---|---|---|---|
AND |
Performs a bitwise AND operation. |
Version 1.1 | |
CASE |
Multiplexes multiple input links of identical formats. |
Version 1.1 | |
CMP_AgeB |
Checks if input link A is greater or equal to the value at the input link B |
Version 1.1 | |
CMP_AgtB |
Checks if input link A is greater than the value at the input link B |
Version 1.1 | |
CMP_AleB |
Checks if input link A is less or equal to the value at the input link B |
Version 1.1 | |
CMP_AltB |
Checks if input link A is less than the value at the input link B |
Version 1.1 | |
CMP_Equal |
Checks if both input links are equal. |
Version 1.1 | |
CMP_NotEqual |
Checks if both input links are not equal. |
Version 1.1 | |
IF |
Forwards an input to the output if it's corresponding condition input is true. |
Version 1.1 | |
IS_Equal |
Compares if the input link value is equal to parameter "Number". |
Version 1.1 | |
IS_GreaterEqual |
Compares if the input link value is grater or equal than parameter "Number". |
Version 1.1 | |
IS_GreaterThan |
Compares if the input link value is grater than parameter "Number". |
Version 1.1 | |
IS_InRange |
Compares if the input link value is within the interval defined by parameters "From" and "To". |
Version 1.1 | |
IS_LessEqual |
Compares if the input link value is less or equal than parameter "Number". |
Version 1.1 | |
IS_LessThan |
Compares if the input link value is less than parameter "Number". |
Version 1.1 | |
IS_NotEqual |
Compares if the input link value is not equal to parameter "Number". |
Version 1.1 | |
NOT |
Performs a bitwise NOT of the input bits. |
Version 1.1 | |
OR |
Performs a bitwise OR operation. |
Version 1.1 | |
XNOR |
Performs a bitwise XNOR operation. |
Version 1.1 | |
XOR |
Performs a bitwise XOR operation. |
Version 1.1 |
Table 41. Operators of Library Logic