MONC
|
Retrieves the double precision real value held at the specific map index or null if index > map elements. More...
Private Member Functions | |
real(kind=default_precision) function | map_real_at (specificmap, i) |
Retrieves the real value held at the specific map index. Converts between precision and int. More... | |
integer function | hashmap_real_at (specificmap, i) |
Retrieves the value held at the specific hashmap index. Converts between precision and from int. Note that this is an expensive operation has it has to potentially process all internal hashed lists so avoid if can. More... | |
Retrieves the double precision real 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 497 of file collections.F90.
|
private |
Retrieves the value held at the specific hashmap index. Converts between precision and from int. 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 1483 of file collections.F90.
|
private |
Retrieves the real value held at the specific map index. Converts between precision and int.
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 841 of file collections.F90.