Skip to content

tuple_equal_elemTupleEqualElemTupleEqualElemtuple_equal_elemtuple_equal_elem🔗

Short description🔗

tuple_equal_elemTupleEqualElemTupleEqualElemtuple_equal_elemtuple_equal_elem — Test, whether two tuples are elementwise equal.

Signature🔗

tuple_equal_elem( tuple T1, tuple T2, out integer Equal )void TupleEqualElem( const HTuple& T1, const HTuple& T2, HTuple* Equal )static void HOperatorSet.TupleEqualElem( HTuple t1, HTuple t2, out HTuple equal )def tuple_equal_elem( t1: MaybeSequence[Union[int, float, str]], t2: MaybeSequence[Union[int, float, str]] ) -> Sequence[int]

def tuple_equal_elem_s( t1: MaybeSequence[Union[int, float, str]], t2: MaybeSequence[Union[int, float, str]] ) -> intHerror tuple_equal_elem( const Hlong T1, const Hlong T2, Hlong* Equal )

Herror T_tuple_equal_elem( const Htuple T1, const Htuple T2, Htuple* Equal )

HTuple HTuple::TupleEqualElem( const HTuple& T2 ) const

HTuple HTuple.TupleEqualElem( HTuple t2 )

Description🔗

tuple_equal_elemTupleEqualElem tests whether the two input tuples T1t1t1 and T2t2t2 are elementwise equal. If both tuples have the same length, the corresponding elements of both tuples are compared. Otherwise, either T1t1t1 or T2t2t2 must have length 1. In this case, the comparison is performed for each element of the longer tuple with the single element of the other tuple. Two tuple elements are equal if they are both (integer or floating point) numbers or both are strings and contain the same value.

Exception: Empty input tuples🔗

If either or both of the input tuples are empty, the operator returns an empty tuple.

HDevelop In-line Operation🔗

HDevelop provides an in-line operation for tuple_equal_elemTupleEqualElem, 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🔗

T1t1t1 (input_control) tuple(-array) → (integer / real / string)HTuple (Hlong / double / HString)HTuple (int / long / double / string)MaybeSequence[Union[int, float, str]]Htuple (Hlong / double / char*)

Input tuple 1.

T2t2t2 (input_control) tuple(-array) → (integer / real / string)HTuple (Hlong / double / HString)HTuple (int / long / double / string)MaybeSequence[Union[int, float, str]]Htuple (Hlong / double / char*)

Input tuple 2.

Equalequalequal (output_control) integer(-array) → (integer)HTuple (Hlong)HTuple (int / long)Sequence[int]Htuple (Hlong)

Result of the comparison of the input tuples.

Combinations with other operators🔗

Combinations

Alternatives

tuple_not_equal_elemTupleNotEqualElem, tuple_less_elemTupleLessElem, tuple_greater_elemTupleGreaterElem, tuple_less_equal_elemTupleLessEqualElem, tuple_greater_equal_elemTupleGreaterEqualElem, tuple_equalTupleEqual, tuple_not_equalTupleNotEqual, tuple_lessTupleLess, tuple_greaterTupleGreater, tuple_less_equalTupleLessEqual, tuple_greater_equalTupleGreaterEqual

Module🔗

Foundation