|
| logical function | musica_array::find_string_in_array_char (array, string, id, case_sensitive) |
| | Finds a string in a string array (case insensitive by default)
|
| |
| logical function | musica_array::find_string_in_array_string (array, string, id, case_sensitive) |
| | Finds a string in an array ( case insensitive by default)
|
| |
| logical function | musica_array::find_string_in_split_array_char (array, string, splitter, element_id, id, case_sensitive) |
| | Find a string in an array of strings after splitting the array elements.
|
| |
| logical function | musica_array::find_string_in_split_array_string (array, string, splitter, element_id, id, case_sensitive) |
| | Find a string in an array of strings after splitting the array elements.
|
| |
| real(kind=musica_dk) function, dimension(:), allocatable, public | musica_array::merge_series (a, b, with_bounds_from) |
| | Merge two sets of values into a single set without duplicates.
|
| |
| real(kind=musica_dk) function, dimension(:), allocatable, public | musica_array::calculate_linear_array (minimum, maximum, number_of_elements) |
| | Allocates and calculates an array of linearly increasing value with specified minimum and maximum values and number of elements.
|
| |
| real(kind=musica_dk) function, dimension(:), allocatable, public | musica_array::calculate_logarithmic_array (minimum, maximum, number_of_elements) |
| | Allocates and calculates an array of logarithmically increasing value with specified minimum and maximum values and number of elements.
|
| |