tuple_gen_consttuple_gen_constTupleGenConstTupleGenConsttuple_gen_const (Operator)

Name

tuple_gen_consttuple_gen_constTupleGenConstTupleGenConsttuple_gen_const — Generate a tuple of a specific length and initialize its elements.

Signature

tuple_gen_const( : : Length, Const : Newtuple)

Herror tuple_gen_const(const Hlong Length, const Hlong Const, Hlong* Newtuple)

Herror T_tuple_gen_const(const Htuple Length, const Htuple Const, Htuple* Newtuple)

void TupleGenConst(const HTuple& Length, const HTuple& Const, HTuple* Newtuple)

static HTuple HTuple::TupleGenConst(const HTuple& Length, const HTuple& Const)

static void HOperatorSet.TupleGenConst(HTuple length, HTuple constVal, out HTuple newtuple)

static HTuple HTuple.TupleGenConst(HTuple length, HTuple constVal)

def tuple_gen_const(length: Union[float, int], const: HTupleElementType) -> Sequence[Union[float, int, str]]

def tuple_gen_const_s(length: Union[float, int], const: HTupleElementType) -> Union[float, int, str]

Description

tuple_gen_consttuple_gen_constTupleGenConstTupleGenConstTupleGenConsttuple_gen_const generates a new tuple in NewtupleNewtupleNewtupleNewtuplenewtuplenewtuple. The input parameter LengthLengthLengthLengthlengthlength determines the number of elements for the new tuple. Thus, LengthLengthLengthLengthlengthlength may only consist of a single number. If LengthLengthLengthLengthlengthlength contains a floating point number, this may only represent an integer value (without fraction). The data type and value of each element of the new generated tuple is determined by the input parameter ConstConstConstConstconstValconst that may only consist of a single element. All elements in NewtupleNewtupleNewtupleNewtuplenewtuplenewtuple have got the same data type and value as the single element in ConstConstConstConstconstValconst.

Exception: Empty input tuples

If any of the input tuples is empty, an exception is raised.

HDevelop In-line Operation

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

Newtuple := gen_tuple_const(Length, Const)

Execution Information

Parameters

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

Length of tuple to generate.

ConstConstConstConstconstValconst (input_control)  tuple HTupleHTupleElementTypeHTupleHtuple (integer / real / string / handle) (int / long / double / string / HHandle) (Hlong / double / HString / HHandle) (Hlong / double / char* / handle)

Constant for initializing the tuple elements.

NewtupleNewtupleNewtupleNewtuplenewtuplenewtuple (output_control)  tuple(-array) HTupleSequence[Union[float, int, str]]HTupleHtuple (integer / real / string) (int / long / double / string) (Hlong / double / HString) (Hlong / double / char*)

New Tuple.

Alternatives

tuple_str_bit_selecttuple_str_bit_selectTupleStrBitSelectTupleStrBitSelectTupleStrBitSelecttuple_str_bit_select, tuple_selecttuple_selectTupleSelectTupleSelectTupleSelecttuple_select, tuple_str_first_ntuple_str_first_nTupleStrFirstNTupleStrFirstNTupleStrFirstNtuple_str_first_n, tuple_str_last_ntuple_str_last_nTupleStrLastNTupleStrLastNTupleStrLastNtuple_str_last_n, tuple_concattuple_concatTupleConcatTupleConcatTupleConcattuple_concat, tuple_inserttuple_insertTupleInsertTupleInsertTupleInserttuple_insert, tuple_replacetuple_replaceTupleReplaceTupleReplaceTupleReplacetuple_replace, tuple_gen_sequencetuple_gen_sequenceTupleGenSequenceTupleGenSequenceTupleGenSequencetuple_gen_sequence

See also

tuple_randtuple_randTupleRandTupleRandTupleRandtuple_rand

Module

Foundation