ClassesClassesClassesClasses | | | | Operators

tuple_sorttuple_sortTupleSorttuple_sortTupleSortTupleSort (Operator)

Name

tuple_sorttuple_sortTupleSorttuple_sortTupleSortTupleSort — Sort the elements of a tuple in ascending order.

Signature

tuple_sort( : : Tuple : Sorted)

Herror tuple_sort(const Hlong Tuple, Hlong* Sorted)

Herror T_tuple_sort(const Htuple Tuple, Htuple* Sorted)

Herror tuple_sort(const HTuple& Tuple, Hlong* Sorted)

Herror tuple_sort(const HTuple& Tuple, HTuple* Sorted)

void TupleSort(const HTuple& Tuple, HTuple* Sorted)

HTuple HTuple::TupleSort() const

void HOperatorSetX.TupleSort(
[in] VARIANT Tuple, [out] VARIANT* Sorted)

VARIANT HTupleX.TupleSort([in] VARIANT Tuple)

static void HOperatorSet.TupleSort(HTuple tuple, out HTuple sorted)

HTuple HTuple.TupleSort()

Description

tuple_sorttuple_sortTupleSorttuple_sortTupleSortTupleSort sorts all elements of TupleTupleTupleTupleTupletuple in ascending order and returns the result with SortedSortedSortedSortedSortedsorted. As a precondition the single elements of TupleTupleTupleTupleTupletuple must be comparable. Thus, TupleTupleTupleTupleTupletuple must either exclusively consist of strings or it must only contain (integer or floating point) numbers. In the latter case integers and floating point numbers may be mixed.

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

Sorted := sort(Tuple)

Parallelization

Parameters

TupleTupleTupleTupleTupletuple (input_control)  number(-array) HTupleHTupleHTupleVARIANTHtuple (integer / real / string) (int / long / double / string) (Hlong / double / HString) (Hlong / double / char*) (Hlong / double / BSTR) (Hlong / double / char*)

Input tuple.

SortedSortedSortedSortedSortedsorted (output_control)  number(-array) HTupleHTupleHTupleVARIANTHtuple (integer / real / string) (int / long / double / string) (Hlong / double / HString) (Hlong / double / char*) (Hlong / double / BSTR) (Hlong / double / char*)

Sorted tuple.

Alternatives

tuple_sort_indextuple_sort_indexTupleSortIndextuple_sort_indexTupleSortIndexTupleSortIndex, tuple_inversetuple_inverseTupleInversetuple_inverseTupleInverseTupleInverse

Module

Foundation


ClassesClassesClassesClasses | | | | Operators