tuple_select_ranktuple_select_rankTupleSelectRankTupleSelectRanktuple_select_rank (Operator)

Name

tuple_select_ranktuple_select_rankTupleSelectRankTupleSelectRanktuple_select_rank — Select the element of rank n of a tuple.

Signature

tuple_select_rank( : : Tuple, RankIndex : Selected)

Herror tuple_select_rank(const Hlong Tuple, const Hlong RankIndex, Hlong* Selected)

Herror T_tuple_select_rank(const Htuple Tuple, const Htuple RankIndex, Htuple* Selected)

void TupleSelectRank(const HTuple& Tuple, const HTuple& RankIndex, HTuple* Selected)

HTuple HTuple::TupleSelectRank(const HTuple& RankIndex) const

static void HOperatorSet.TupleSelectRank(HTuple tuple, HTuple rankIndex, out HTuple selected)

HTuple HTuple.TupleSelectRank(HTuple rankIndex)

def tuple_select_rank(tuple: MaybeSequence[Union[float, int]], rank_index: Union[float, int]) -> Union[float, int]

Description

tuple_select_ranktuple_select_rankTupleSelectRankTupleSelectRankTupleSelectRanktuple_select_rank sorts the elements of the tuple TupleTupleTupleTupletupletuple and returns the element of rank n in SelectedSelectedSelectedSelectedselectedselected. RankIndexRankIndexRankIndexRankIndexrankIndexrank_index determines the index of the element to select. Thus, RankIndexRankIndexRankIndexRankIndexrankIndexrank_index may only contain integer values (any floating point number in RankIndexRankIndexRankIndexRankIndexrankIndexrank_index must represent an integer value without fraction). Indices of tuple elements start at 0, i.e. the lowest tuple element has the index 0.

Exception: Empty input tuples

If RankIndexRankIndexRankIndexRankIndexrankIndexrank_index is empty, the operator returns an empty tuple.

HDevelop In-line Operation

HDevelop provides an in-line operation for tuple_select_ranktuple_select_rankTupleSelectRankTupleSelectRankTupleSelectRanktuple_select_rank, which can be used in an expression in the following syntax:

Selected := select_rank(Tuple, RankIndex)

Execution Information

Parameters

TupleTupleTupleTupletupletuple (input_control)  number(-array) HTupleMaybeSequence[Union[float, int]]HTupleHtuple (integer / real) (int / long / double) (Hlong / double) (Hlong / double)

Input tuple.

RankIndexRankIndexRankIndexRankIndexrankIndexrank_index (input_control)  number HTupleUnion[float, int]HTupleHtuple (integer / real) (int / long / double) (Hlong / double) (Hlong / double)

Rank of the element to select.

SelectedSelectedSelectedSelectedselectedselected (output_control)  number HTupleUnion[float, int]HTupleHtuple (integer / real) (int / long / double) (Hlong / double) (Hlong / double)

Selected tuple element.

Alternatives

tuple_sort_indextuple_sort_indexTupleSortIndexTupleSortIndexTupleSortIndextuple_sort_index, tuple_sorttuple_sortTupleSortTupleSortTupleSorttuple_sort

See also

tuple_mediantuple_medianTupleMedianTupleMedianTupleMediantuple_median, tuple_selecttuple_selectTupleSelectTupleSelectTupleSelecttuple_select

Module

Foundation