tuple_equal🔗
Short description🔗
tuple_equal — Test whether two tuples are equal.
Signature🔗
tuple_equal( tuple T1, tuple T2, out integer Equal )
Description🔗
tuple_equal tests whether the two input tuples T1
and T2 are equal by comparing the tuples elementwise.
Two tuples are equal, if they have got the same number of elements and
if their elements are equal.
Two tuple elements are equal, if they are both (integer or floating point)
numbers or both are strings and contain the same value.
HDevelop In-line Operation🔗
HDevelop provides an in-line operation for tuple_equal,
which can be used in an expression in the following syntax:
Equal := T1 == T2
or
Equal := 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.
Equal (output_control) integer → (integer)
Result of the comparison of the input tuples.
Combinations with other operators🔗
Combinations
Alternatives
tuple_not_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