MONC
|
Retrieves the key currently being held at a specific index in the map or "" if the index > map elements. More...
Private Member Functions | |
character(len=string_length) function | map_key_at (specificmap, i) |
Retrieves the key currently being held at a specific index in the map or "" if the index > map elements. More... | |
character(len=string_length) function | hashmap_key_at (specificmap, i) |
Retrieves the key currently being held at a specific index in the hashmap or "" if the index > map elements. Note that this is an expensive operation has it has to potentially process all internal hashed lists so avoid if can. More... | |
Retrieves the key currently being held at a specific index in the map or "" if the index > map elements.
This has a time complexity of O(n)
collection | The specific map involved |
index | The index to retrieve the key from |
Definition at line 457 of file collections.F90.
|
private |
Retrieves the key currently being held at a specific index in the hashmap or "" if the index > map elements. 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 | The index to retrieve the key from |
Definition at line 1420 of file collections.F90.
|
private |
Retrieves the key currently being held at a specific index in the map or "" if the index > map elements.
Do not call directly from external module, this is called via the appropriate interface
specificmap | The specific map involved |
i | The index to retrieve the key from |
Definition at line 778 of file collections.F90.