MONC
|
Retrieves the integer value held at the specific map index or null if index > map elements. More...
Private Member Functions | |
integer function | map_integer_at (specificmap, i) |
Retrieves the integer value held at the specific map index. More... | |
integer function | hashmap_integer_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 integer 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 477 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 1446 of file collections.F90.
|
private |
Retrieves the integer 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 806 of file collections.F90.