tuple_removetuple_removeTupleRemoveTupleRemovetuple_remove (算子)

名称

tuple_removetuple_removeTupleRemoveTupleRemovetuple_remove — 从元组中移除元素。

签名

tuple_remove( : : Tuple, Index : Reduced)

Herror tuple_remove(const Hlong Tuple, const Hlong Index, Hlong* Reduced)

Herror T_tuple_remove(const Htuple Tuple, const Htuple Index, Htuple* Reduced)

void TupleRemove(const HTuple& Tuple, const HTuple& Index, HTuple* Reduced)

HTuple HTuple::TupleRemove(const HTuple& Index) const

static void HOperatorSet.TupleRemove(HTuple tuple, HTuple index, out HTuple reduced)

HTuple HTuple.TupleRemove(HTuple index)

def tuple_remove(tuple: MaybeSequence[Union[float, int, str]], index: MaybeSequence[int]) -> Sequence[Union[float, int, str]]

def tuple_remove_s(tuple: MaybeSequence[Union[float, int, str]], index: MaybeSequence[int]) -> Union[float, int, str]

描述

tuple_removetuple_removeTupleRemoveTupleRemoveTupleRemovetuple_remove removes one or more elements from the tuple TupleTupleTupleTupletupletuple and returns the rest in the tuple ReducedReducedReducedReducedreducedreduced. IndexIndexIndexIndexindexindex determines the indices of the elements to remove. Thus, IndexIndexIndexIndexindexindex may only contain integer values (any floating point number within IndexIndexIndexIndexindexindex must represent an integer value without fraction). Note that indices of tuple elements start at 0, i.e. the first tuple element has got the index 0. Duplicates and indices out of range are ignored.

例外:空输入元组

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

HDevelop 内联操作

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

Reduced := remove(Tuple, Index)

执行信息

参数

TupleTupleTupleTupletupletuple (输入控制)  tuple(-array) HTupleMaybeSequence[Union[float, int, str]]HTupleHtuple (integer / real / string) (int / long / double / string) (Hlong / double / HString) (Hlong / double / char*)

Input tuple.

IndexIndexIndexIndexindexindex (输入控制)  integer(-array) HTupleMaybeSequence[int]HTupleHtuple (integer) (int / long) (Hlong) (Hlong)

Indices of the elements to remove.

ReducedReducedReducedReducedreducedreduced (输出控制)  tuple(-array) HTupleSequence[Union[float, int, str]]HTupleHtuple (integer / real / string) (int / long / double / string) (Hlong / double / HString) (Hlong / double / char*)

Reduced tuple.

替代

tuple_first_ntuple_first_nTupleFirstNTupleFirstNTupleFirstNtuple_first_n, tuple_last_ntuple_last_nTupleLastNTupleLastNTupleLastNtuple_last_n, tuple_str_bit_selecttuple_str_bit_selectTupleStrBitSelectTupleStrBitSelectTupleStrBitSelecttuple_str_bit_select, tuple_concattuple_concatTupleConcatTupleConcatTupleConcattuple_concat, tuple_inserttuple_insertTupleInsertTupleInsertTupleInserttuple_insert, tuple_replacetuple_replaceTupleReplaceTupleReplaceTupleReplacetuple_replace

另见

tuple_selecttuple_selectTupleSelectTupleSelectTupleSelecttuple_select, tuple_select_masktuple_select_maskTupleSelectMaskTupleSelectMaskTupleSelectMasktuple_select_mask

模块

基础