assoc_list_t Derived Type

type, public :: assoc_list_t


Contents

Source Code


Components

TypeVisibility AttributesNameInitial
integer, private :: nslots =0
integer, private :: nitems =0
character(len=200), private, allocatable:: key(:)
character(len=1000), private, allocatable:: value(:)

Source Code

type, public :: assoc_list_t
  private
  integer                               :: nslots = 0
  integer                               :: nitems = 0
  character(len=200), allocatable       :: key(:)
  character(len=1000), allocatable      :: value(:)
end type assoc_list_t