This comparison function compares the operands connected to the input parameters in regard to less. Comparison proceeds from left to right. The function is available as standard function LT and safety-related function LT_S.
NOTE:
The comparison is always a signed comparison. Therefore the values for DWORD are limited to 31 bits, for WORD to 15 bits and for BYTE to 7 bits.
LT
Parameter |
Data types |
Description |
IN1 |
ELEMENTARY |
First input value |
IN2 |
ELEMENTARY |
Second input value |
OUT |
BOOL |
TRUE if IN1 is lower than IN2. FALSE if IN1 is greater or equal than IN2. |
LT_S
Parameter |
Data types |
Description |
IN1 |
SAFEELEMENTARY |
First input value |
IN2 |
SAFEELEMENTARY |
Second input value |
OUT |
SAFEBOOL |
TRUE if IN1 is lower than IN2. FALSE if IN1 is greater or equal than IN2. |
NOTE:
All input parameters must have the same data type.