tuple_inverse🔗
Short description🔗
tuple_inverse — Invert a tuple.
Signature🔗
tuple_inverse( tuple Tuple, out tuple Inverted )
Description🔗
tuple_inverse inverts the input tuple Tuple. Thus,
Inverted contains the same elements as Tuple but with
the reverse order.
Exception: Empty input tuple🔗
If the input tuple is empty, the operator returns an empty tuple.
HDevelop In-line Operation🔗
HDevelop provides an in-line operation for tuple_inverse,
which can be used in an expression in the following syntax:
Inverted := inverse(Tuple)
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🔗
Tuple (input_control) tuple(-array) → (integer / real / string)
Input tuple.
Inverted (output_control) tuple(-array) → (integer / real / string)
Inverted input tuple.
Combinations with other operators🔗
Module🔗
Foundation