MONC
|
Retrieves the logical value held at the specific map index or null if index > map elements. More...
Private Member Functions | |
logical function | map_logical_at (specificmap, i) |
Retrieves the logical value held at the specific map index. More... | |
logical function | hashmap_logical_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 logical 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 507 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 1509 of file collections.F90.
|
private |
Retrieves the logical 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 866 of file collections.F90.