MONC
|
Retrieves the string value held at the specific map index or null if index > map elements. More...
Private Member Functions | |
character(len=string_length) function | map_string_at (specificmap, i) |
Retrieves the string value held at the specific map index. More... | |
character(len=string_length) function | hashmap_string_at (specificmap, i) |
Retrieves the value held at the specific hashmap index. Note that this is an expensive operation has it has to potentially process all internal hashed lists so avoid if can. More... | |
Retrieves the string value held at the specific map index or null if index > map elements.
This has a time complexity of O(n)
collection | The specific map involved |
index | The index to get value from |
Definition at line 487 of file collections.F90.
|
private |
Retrieves the value held at the specific hashmap index. Note that this is an expensive operation has it has to potentially process all internal hashed lists so avoid if can.
Do not call directly from external module, this is called via the appropriate interface
specificmap | The specific hashmap involved |
i | Index to get value from |
Definition at line 1465 of file collections.F90.
|
private |
Retrieves the string value held at the specific map index.
Do not call directly from external module, this is called via the appropriate interface
specificmap | The specific map involved |
i | Index to get value from |
Definition at line 824 of file collections.F90.