ClassesClasses | | Operators

tuple_gen_consttuple_gen_constTupleGenConstTupleGenConst (Operator)

Name

tuple_gen_consttuple_gen_constTupleGenConstTupleGenConst — 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)

Description

tuple_gen_consttuple_gen_constTupleGenConstTupleGenConstTupleGenConst generates a new tuple in NewtupleNewtupleNewtupleNewtuplenewtuple. The input parameter LengthLengthLengthLengthlength determines the number of elements for the new tuple. Thus, LengthLengthLengthLengthlength may only consist of a single number. If LengthLengthLengthLengthlength 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 ConstConstConstConstconstVal that may only consist of a single element. All elements in NewtupleNewtupleNewtupleNewtuplenewtuple have got the same data type and value as the single element in ConstConstConstConstconstVal.

Exception: Empty input tupless

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

Newtuple := gen_tuple_const(Length, Const)

Execution Information

Parameters

LengthLengthLengthLengthlength (input_control)  number HTupleHTupleHtuple (integer / real) (int / long / double) (Hlong / double) (Hlong / double)

Length of tuple to generate.

ConstConstConstConstconstVal (input_control)  number HTupleHTupleHtuple (integer / real / string) (int / long / double / string) (Hlong / double / HString) (Hlong / double / char*)

Constant for initializing the tuple elements.

NewtupleNewtupleNewtupleNewtuplenewtuple (output_control)  number(-array) HTupleHTupleHtuple (integer / real / string) (int / long / double / string) (Hlong / double / HString) (Hlong / double / char*)

New Tuple.

Alternatives

tuple_str_bit_selecttuple_str_bit_selectTupleStrBitSelectTupleStrBitSelectTupleStrBitSelect, tuple_selecttuple_selectTupleSelectTupleSelectTupleSelect, tuple_str_first_ntuple_str_first_nTupleStrFirstNTupleStrFirstNTupleStrFirstN, tuple_str_last_ntuple_str_last_nTupleStrLastNTupleStrLastNTupleStrLastN, tuple_concattuple_concatTupleConcatTupleConcatTupleConcat, tuple_inserttuple_insertTupleInsertTupleInsertTupleInsert, tuple_replacetuple_replaceTupleReplaceTupleReplaceTupleReplace, tuple_gen_sequencetuple_gen_sequenceTupleGenSequenceTupleGenSequenceTupleGenSequence

See also

tuple_randtuple_randTupleRandTupleRandTupleRand

Module

Foundation


ClassesClasses | | Operators