LTS() |
![]() ![]() ![]() |
The LTS() function processes two dynamic arrays, returning a similarly structured result array indicating whether elements of the first array are less than corresponding elements of the second array.
Format
LTS(expr1, expr2)
where
The LTS() function compares corresponding elements of the dynamic arrays expr1 and expr2, returning a similarly structured dynamic array of true / false values indicating the results of the comparison.
The REUSE() function can be applied to either or both expressions. Without this function, any absent trailing values are taken as zero.
Example
A contains 11FM0VM14VMABCFM2 B contains 12FM0VM14VMACBFM2
C = LTS(A, B)
C now contains 1FM0VM0VM0FM0
See also: ANDS(), EQS(), GES(), GTS(), IFS(), LES(), NES(), NOTS(), ORS(), REUSE() |