Tupleš
On this topicš
Arithmeticš
tuple_abs: Compute the absolute value of a tuple.
tuple_acos: Compute the arccosine of a tuple.
tuple_acosh: Compute the inverse hyperbolic cosine of a tuple.
tuple_add: Add two tuples.
tuple_asin: Compute the arcsine of a tuple.
tuple_asinh: Compute the inverse hyperbolic sine of a tuple.
tuple_atan: Compute the arctangent of a tuple.
tuple_atan2: Compute the arctangent of a tuple for all four quadrants.
tuple_atanh: Compute the inverse hyperbolic tangent of a tuple.
tuple_cbrt: Compute the cube root of a tuple.
tuple_ceil: Compute the ceiling function of a tuple.
tuple_cos: Compute the cosine of a tuple.
tuple_cosh: Compute the hyperbolic cosine of a tuple.
tuple_cumul: Calculate the cumulative sums of a tuple.
tuple_deg: Convert a tuple from radians to degrees.
tuple_div: Divide two tuples.
tuple_erf: Compute the error function of a tuple.
tuple_erfc: Compute the complementary error function of a tuple.
tuple_exp: Compute the exponential of a tuple.
tuple_exp10: Compute the base 10 exponential of a tuple.
tuple_exp2: Compute the base 2 exponential of a tuple.
tuple_fabs: Compute the absolute value of a tuple (as floating point numbers).
tuple_floor: Compute the floor function of a tuple.
tuple_fmod: Calculate the remainder of the floating point division of two tuples.
tuple_hypot: Calculate the hypotenuse of two tuples.
tuple_ldexp: Calculate the ldexp function of two tuples.
tuple_lgamma: Compute the logarithm of the absolute value of the gamma function of
a tuple.
tuple_log: Compute the natural logarithm of a tuple.
tuple_log10: Compute the base 10 logarithm of a tuple.
tuple_log2: Compute the base 2 logarithm of a tuple.
tuple_max2: Calculate the elementwise maximum of two tuples.
tuple_min2: Calculate the elementwise minimum of two tuples.
tuple_mod: Calculate the remainder of the integer division of two tuples.
tuple_mult: Multiply two tuples.
tuple_neg: Negate a tuple.
tuple_pow: Calculate the power function of two tuples.
tuple_rad: Convert a tuple from degrees to radians.
tuple_sgn: Calculate the sign of a tuple.
tuple_sin: Compute the sine of a tuple.
tuple_sinh: Compute the hyperbolic sine of a tuple.
tuple_sqrt: Compute the square root of a tuple.
tuple_sub: Subtract two tuples.
tuple_tan: Compute the tangent of a tuple.
tuple_tanh: Compute the hyperbolic tangent of a tuple.
tuple_tgamma: Compute the gamma function of a tuple.
Bit Operationsš
tuple_band: Compute the bitwise and of two tuples.
tuple_bnot: Compute the bitwise not of a tuple.
tuple_bor: Compute the bitwise or of two tuples.
tuple_bxor: Compute the bitwise exclusive or of two tuples.
tuple_lsh: Shift a tuple bitwise to the left.
tuple_rsh: Shift a tuple bitwise to the right.
Comparisonš
tuple_equal: Test whether two tuples are equal.
tuple_equal_elem: Test, whether two tuples are elementwise equal.
tuple_greater: Test whether a tuple is greater than another tuple.
tuple_greater_elem: Test, whether a tuple is elementwise greater than another tuple.
tuple_greater_equal: Test whether a tuple is greater or equal to another tuple.
tuple_greater_equal_elem: Test, whether a tuple is elementwise greater or equal to another tuple.
tuple_less: Test whether a tuple is less than another tuple.
tuple_less_elem: Test, whether a tuple is elementwise less than another tuple.
tuple_less_equal: Test whether a tuple is less or equal to another tuple.
tuple_less_equal_elem: Test, whether a tuple is elementwise less or equal to another tuple.
tuple_not_equal: Test whether two tuples are not equal.
tuple_not_equal_elem: Test, whether two tuples are elementwise not equal.
Containersš
copy_dict: Copy a dictionary.
create_dict: Create a new empty dictionary.
dict_to_json: Transform a dictionary into a JSON string.
get_dict_object: Retrieve an object associated with the key from the dictionary.
get_dict_param: Query dictionary parameters or information about a dictionary.
get_dict_tuple: Retrieve a tuple associated with the key from the dictionary.
json_to_dict: Transform a JSON string into a dictionary.
read_dict: Read a dictionary from a file.
remove_dict_key: Remove keys from a dictionary.
set_dict_object: Add a key/object pair to the dictionary.
set_dict_tuple: Add a key/tuple pair to the dictionary.
set_dict_tuple_at: Assignment of one or several values to one or several tuple elements
in a dictionary
write_dict: Write a dictionary to a file.
Conversionš
handle_to_integer: Convert a handle into an integer.
integer_to_handle: Convert an integer into a handle.
tuple_chr: Convert a tuple of integer numbers into strings.
tuple_chrt: Convert a tuple of integer numbers into strings.
tuple_int: Convert a tuple into a tuple of integer numbers.
tuple_number: Convert a tuple (of strings) into a tuple of numbers.
tuple_ord: Convert a tuple of strings of length 1 into a tuple of integer numbers.
tuple_ords: Convert a tuple of strings into a tuple of integer numbers.
tuple_real: Convert a tuple into a tuple of floating point numbers.
tuple_round: Convert a tuple into a tuple of integer numbers.
tuple_string: Convert a tuple into a tuple of strings.
Creationš
clear_handle: Clear the content of a handle.
tuple_concat: Concatenate two tuples to a new one.
tuple_constant: Generate a tuple with the value of a HDevelop language constant.
tuple_gen_const: Generate a tuple of a specific length and initialize its elements.
tuple_gen_sequence: Generate a tuple with a sequence of equidistant values.
tuple_rand: Return a tuple of random numbers between 0 and 1.
tuple_repeat: Repeat a tuple.
tuple_repeat_elem: Repeat the elements of a tuple.
Element Orderš
tuple_inverse: Invert a tuple.
tuple_sort: Sort the elements of a tuple in ascending order.
tuple_sort_index: Sort the elements of a tuple and return the indices of the sorted tuple.
Featuresš
get_handle_object: Retrieve an object associated with a key from a handle.
get_handle_param: Return information about a handle.
get_handle_tuple: Retrieve a tuple associated with a key from a handle.
tuple_deviation: Return the standard deviation of the elements of a tuple.
tuple_histo_range: Calculate the value distribution of a tuple within a certain value range.
tuple_length: Return the number of elements of a tuple.
tuple_max: Return the maximal element of a tuple.
tuple_mean: Return the mean value of a tuple of numbers.
tuple_median: Return the median of the elements of a tuple.
tuple_min: Return the minimal element of a tuple.
tuple_sum: Return the sum of all elements of a tuple.
Logical Operationsš
tuple_and: Compute the logical and of two tuples.
tuple_not: Compute the logical not of a tuple.
tuple_or: Compute the logical or of two tuples.
tuple_xor: Compute the logical exclusive or of two tuples.
Manipulationš
tuple_insert: Inserts one or more elements into a tuple at index.
tuple_remove: Remove elements from a tuple.
tuple_replace: Replaces one or more elements of a tuple.
Selectionš
tuple_find: Return the indices of all occurrences of a tuple within another tuple.
tuple_find_first: Return the index of the first occurrence of a tuple within another tuple.
tuple_find_last: Return the index of the last occurrence of a tuple within another tuple.
tuple_first_n: Select the first elements of a tuple up to the index ānā.
tuple_last_n: Select all elements from index ānā to the end of a tuple.
tuple_select: Select single elements of a tuple.
tuple_select_mask: Select in mask specified elements of a tuple.
tuple_select_range: Select several elements of a tuple.
tuple_select_rank: Select the element of rank n of a tuple.
tuple_str_bit_select: Select single character or bit from a tuple.
tuple_uniq: Discard all but one of successive identical elements of a tuple.
Setsš
tuple_difference: Compute the difference set of two input tuples.
tuple_intersection: Compute the intersection set of two input tuples.
tuple_symmdiff: Compute the symmetric difference set of two input tuples.
tuple_union: Compute the union set of two input tuples.
String Operationsš
tuple_environment: Read one or more environment variables.
tuple_join: Join strings using separator symbol(s).
tuple_regexp_match: Extract substrings using regular expressions.
tuple_regexp_replace: Replace a substring using regular expressions.
tuple_regexp_select: Select tuple elements matching a regular expression.
tuple_regexp_test: Test if a string matches a regular expression.
tuple_split: Split strings into substrings using predefined separator symbol(s).
tuple_str_distance: Calculate the distance between strings.
tuple_str_first_n: Cut the first characters up to position ānā out of a string tuple.
tuple_str_last_n: Cut all characters starting at position ānā out of a string tuple.
tuple_str_replace: Replace all occurrences of a substring within a string.
tuple_strchr: Forward search for characters within a string tuple.
tuple_strlen: Determine the length of every string within a tuple of strings.
tuple_strrchr: Backward search for characters within a string tuple.
tuple_strrstr: Backward search for strings within a string tuple.
tuple_strstr: Forward search for strings within a string tuple.
tuple_substr: Cut characters from position ān1ā through ān2ā out of a string tuple.
Typeš
tuple_is_handle: Test if the internal representation of a tuple is of type handle.
tuple_is_handle_elem: Test whether the elements of a tuple are of type handle.
tuple_is_int: Test if the internal representation of a tuple is of type integer.
tuple_is_int_elem: Test whether the types of the elements of a tuple are of type
integer.
tuple_is_mixed: Test whether a tuple is of type mixed.
tuple_is_nan_elem: Check a tuple whether it represents NaNs (Not-a-number).
tuple_is_number: Check a tuple (of strings) whether it represents numbers.
tuple_is_real: Test if the internal representation of a tuple is of type real.
tuple_is_real_elem: Test whether the types of the elements of a tuple are of type real.
tuple_is_string: Test if the internal representation of a tuple is of type string.
tuple_is_string_elem: Test whether the types of the elements of a tuple are of type
string.
tuple_is_valid_handle: Check if a handle is valid.
tuple_sem_type: Return the semantic type of a tuple.
tuple_sem_type_elem: Return the semantic type of the elements of a tuple.
tuple_type: Return the type of a tuple.
tuple_type_elem: Return the types of the elements of a tuple.