MONC
|
Puts a double precision real key-value pair into the map. More...
Private Member Functions | |
subroutine | map_put_real (specificmap, key, real_data) |
Puts a specific key-value pair into the map. More... | |
subroutine | hashmap_put_real (specificmap, key, real_data) |
Puts a specific key-value pair into the hashmap. More... | |
Puts a double precision real key-value pair into the map.
If the key is not already held in the map then the key-value pair will be added, otherwise the existing key-value pair will be modified to hold this updated value (keys must be unique) This has a time complexity of O(n) due to key look up
collection | The specific map involved |
key | The key to place in the map |
value | Double precision real data value to place in the map |
Definition at line 344 of file collections.F90.
|
private |
Puts a specific key-value pair into the hashmap.
If the key is not already held in the hashmap then the key-value pair will be added, otherwise the existing key-value pair will be modified to hold this updated value (keys must be unique). This uses a hashing function for performance Do not call directly from external module, this is called via the appropriate interface
specificmap | The specific map involved |
key | The key to place in the map |
data | Double precision real data value to place in the map |
Definition at line 1323 of file collections.F90.
|
private |
Puts a specific key-value pair into the map.
If the key is not already held in the map then the key-value pair will be added, otherwise the existing key-value pair will be modified to hold this updated value (keys must be unique) Do not call directly from external module, this is called via the appropriate interface
specificmap | The specific map involved |
key | The key to place in the map |
data | Double precision real value to place in the map |
Definition at line 684 of file collections.F90.