MONC
Private Attributes | List of all members
collections_mod::hashset_type Type Reference

Hashset structure which will store unique strings. The hashing aspect means that lookup is very fast but it does add extra memory overhead and the order is non-deterministic. More...

Collaboration diagram for collections_mod::hashset_type:
Collaboration graph
[legend]

Private Attributes

type(list_type), dimension(:), pointer, private set_ds => null()
 
integer, private size =0
 

Detailed Description

Hashset structure which will store unique strings. The hashing aspect means that lookup is very fast but it does add extra memory overhead and the order is non-deterministic.

Definition at line 102 of file collections.F90.

Member Data Documentation

◆ set_ds

type(list_type), dimension(:), pointer, private collections_mod::hashset_type::set_ds => null()
private

Definition at line 103 of file collections.F90.

103  type(list_type), pointer, dimension(:), private :: set_ds => null()

◆ size

integer, private collections_mod::hashset_type::size =0
private

Definition at line 104 of file collections.F90.

104  integer, private :: size=0

The documentation for this type was generated from the following file: