MONC
|
A hashmap structure, the same as a map but uses hashing for greatly improved performance when storing large numbers of entries, with the lookup complexisty being almost constant (assuming good hash distribution.) Note that this does require more storage than a map and unlike a map does not preserve ordering. More...
Private Attributes | |
type(list_type), dimension(:), pointer, private | map_ds => null() |
Underlying list data structure used to implement the map. More... | |
integer, private | size =0 |
A hashmap structure, the same as a map but uses hashing for greatly improved performance when storing large numbers of entries, with the lookup complexisty being almost constant (assuming good hash distribution.) Note that this does require more storage than a map and unlike a map does not preserve ordering.
Definition at line 94 of file collections.F90.
|
private |
Underlying list data structure used to implement the map.
Definition at line 96 of file collections.F90.
|
private |
Definition at line 97 of file collections.F90.