tuple_not_equal🔗
Short description🔗
tuple_not_equal — Test whether two tuples are not equal.
Signature🔗
tuple_not_equal( tuple T1, tuple T2, out integer Nequal )
Description🔗
tuple_not_equal tests whether the two input tuples T1
and T2 are not equal. Two tuples are not equal, if
they consist of a different number of elements or if they differ
when compared elementwise. Two tuple elements differ, if they
are of types that may not be compared (e.g., one string and one integer)
or if they differ in their values.
HDevelop In-line Operation🔗
HDevelop provides an in-line operation for tuple_not_equal,
which can be used in an expression in the following syntax:
Nequal := T1 != T2
or
Nequal := T1 # T2
Execution information🔗
Execution information
-
Multithreading type: reentrant (runs in parallel with non-exclusive operators).
-
Multithreading scope: global (may be called from any thread).
-
Processed without parallelization.
Parameters🔗
T1 (input_control) tuple(-array) → (integer / real / string)
Input tuple 1.
T2 (input_control) tuple(-array) → (integer / real / string)
Input tuple 2.
Nequal (output_control) integer → (integer)
Result of the comparison of the input tuples.
Combinations with other operators🔗
Combinations
Alternatives
tuple_equal, tuple_less, tuple_greater, tuple_less_equal, tuple_greater_equal, tuple_equal_elem, tuple_not_equal_elem, tuple_less_elem, tuple_greater_elem, tuple_less_equal_elem, tuple_greater_equal_elem
Module🔗
Foundation