tem_stringKeyValuePair_type Derived Type

type, public :: tem_stringKeyValuePair_type

Defines a key/value pair of strings that can be set or retrieved.


Inherited by

type~~tem_stringkeyvaluepair_type~~InheritedByGraph type~tem_stringkeyvaluepair_type tem_stringKeyValuePair_type type~grw_stringkeyvaluepairarray_type grw_stringkeyvaluepairarray_type type~grw_stringkeyvaluepairarray_type->type~tem_stringkeyvaluepair_type val

Contents


Components

Type Visibility Attributes Name Initial
character(len=labellen), public :: key

The key in the key/value pair. It's length is limited to /ref labellen.

character(len=labellen), public :: value

The value in the key/value pair. It's length is limited to /ref labellen.


Source Code

  type tem_stringKeyValuePair_type
    !> The key in the key/value pair. It's length is limited to /ref labellen.
    character(len=labellen) :: key
    !> The value in the key/value pair. It's length is limited to /ref labellen.
    character(len=labellen) :: value
  end type tem_stringKeyValuePair_type