tuple_gen_consttuple_gen_constTupleGenConstTupleGenConsttuple_gen_const (算子名称)
名称
tuple_gen_consttuple_gen_constTupleGenConstTupleGenConsttuple_gen_const — Generate a tuple of a specific length and initialize its elements.
参数签名
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]
描述
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)
运行信息
- Multithreading type: independent (runs in parallel even with exclusive operators).
- 多线程作用域:全局(可以从任何线程调用)。
- 未经并行化处理。
参数表
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.
可替代算子
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
参考其它
tuple_randtuple_randTupleRandTupleRandTupleRandtuple_rand
模块
Foundation