MONC
|
Retrieves the generic value held at the specific map index or null if index > map elements. More...
Private Member Functions | |
class(*) function, pointer | map_generic_at (specificmap, i) |
Retrieves the generic value held at the specific map index or null if index > map elements. More... | |
class(*) function, pointer | hashmap_generic_at (specificmap, i) |
Retrieves the value held at the specific hashmap index or null if 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 generic 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 467 of file collections.F90.
|
private |
Retrieves the value held at the specific hashmap index or null if 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 | Index to get value from |
Definition at line 1528 of file collections.F90.
|
private |
Retrieves the generic value held at the specific map index or null if index > map elements.
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 884 of file collections.F90.