Skip to content

tuple_modTupleModTupleModtuple_modtuple_mod🔗

Short description🔗

tuple_modTupleModTupleModtuple_modtuple_mod — Calculate the remainder of the integer division of two tuples.

Signature🔗

tuple_mod( number T1, number T2, out number Mod )void TupleMod( const HTuple& T1, const HTuple& T2, HTuple* Mod )static void HOperatorSet.TupleMod( HTuple t1, HTuple t2, out HTuple mod )def tuple_mod( t1: MaybeSequence[int], t2: MaybeSequence[int] ) -> Sequence[int]

def tuple_mod_s( t1: MaybeSequence[int], t2: MaybeSequence[int] ) -> intHerror tuple_mod( const Hlong T1, const Hlong T2, Hlong* Mod )

Herror T_tuple_mod( const Htuple T1, const Htuple T2, Htuple* Mod )

HTuple HTuple::TupleMod( const HTuple& T2 ) const

HTuple HTuple.TupleMod( HTuple t2 )

Description🔗

tuple_modTupleMod returns the remainder of the integer division of the input tuples \(\textrm{T1}/\textrm{T2}\) in the output tuple Modmodmod. If both tuples have the same length the division is performed for the corresponding elements of both tuples. Otherwise, either T1t1t1 or T2t2t2 must have length 1. In this case, the division is performed for each element of the longer tuple with the single element of the other tuple. The result is always an integer number. The division of strings is not allowed.

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_modTupleMod, which can be used in an expression in the following syntax:

Mod := 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) number(-array) → (integer)HTuple (Hlong)HTuple (int / long)MaybeSequence[int]Htuple (Hlong)

Input tuple 1.

T2t2t2 (input_control) number(-array) → (integer)HTuple (Hlong)HTuple (int / long)MaybeSequence[int]Htuple (Hlong)

Input tuple 2.

Restriction: T2 != 0

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

Remainder of the division of the input tuples.

Combinations with other operators🔗

Combinations

See also

tuple_fmodTupleFmod, tuple_divTupleDiv

Module🔗

Foundation