Abstract type that represents a datastructure that maps keys to values.
Call to allow for freeing of resources of this object.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(object), | intent(inout) | :: | self |
Get value of an attribute of this object
Set value of an attribute of this object
Delete an attribute of this object
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(object), | intent(inout) | :: | self | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | attr_name |
Get c_ptr representation of this object. For development of Python extension modules
Get C pointer to an object, needed for developing Python extensions.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(object), | intent(in) | :: | self |
Get value at a given key. KeyError if key does not exist
Inserts value at given key. Sets value if key already exists.
Delete key-value pair with given key.
Get value at a given key. KeyError if key does not exist
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int32), | intent(in) | :: | key |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int32), | intent(out) | :: | item | |||
integer(kind=int32), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int32), | intent(in) | :: | key | |||
integer(kind=int32), | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int64), | intent(out) | :: | item | |||
integer(kind=int32), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int32), | intent(in) | :: | key | |||
integer(kind=int64), | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
real(kind=real32), | intent(out) | :: | item | |||
integer(kind=int32), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int32), | intent(in) | :: | key | |||
real(kind=real32), | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
real(kind=real64), | intent(out) | :: | item | |||
integer(kind=int32), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int32), | intent(in) | :: | key | |||
real(kind=real64), | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
complex(kind=real32), | intent(out) | :: | item | |||
integer(kind=int32), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int32), | intent(in) | :: | key | |||
complex(kind=real32), | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
complex(kind=real64), | intent(out) | :: | item | |||
integer(kind=int32), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int32), | intent(in) | :: | key | |||
complex(kind=real64), | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
logical, | intent(out) | :: | item | |||
integer(kind=int32), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int32), | intent(in) | :: | key | |||
logical, | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
character(kind=C_CHAR), | intent(out), | dimension(:), pointer | :: | item | ||
integer(kind=int32), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int32), | intent(in) | :: | key | |||
character(kind=C_CHAR), | intent(in), | dimension(:) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
character(kind=C_CHAR,len=:), | intent(out), | allocatable | :: | item | ||
integer(kind=int32), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int32), | intent(in) | :: | key | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int64), | intent(in) | :: | key |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int32), | intent(out) | :: | item | |||
integer(kind=int64), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int64), | intent(in) | :: | key | |||
integer(kind=int32), | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int64), | intent(out) | :: | item | |||
integer(kind=int64), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int64), | intent(in) | :: | key | |||
integer(kind=int64), | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
real(kind=real32), | intent(out) | :: | item | |||
integer(kind=int64), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int64), | intent(in) | :: | key | |||
real(kind=real32), | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
real(kind=real64), | intent(out) | :: | item | |||
integer(kind=int64), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int64), | intent(in) | :: | key | |||
real(kind=real64), | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
complex(kind=real32), | intent(out) | :: | item | |||
integer(kind=int64), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int64), | intent(in) | :: | key | |||
complex(kind=real32), | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
complex(kind=real64), | intent(out) | :: | item | |||
integer(kind=int64), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int64), | intent(in) | :: | key | |||
complex(kind=real64), | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
logical, | intent(out) | :: | item | |||
integer(kind=int64), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int64), | intent(in) | :: | key | |||
logical, | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
character(kind=C_CHAR), | intent(out), | dimension(:), pointer | :: | item | ||
integer(kind=int64), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int64), | intent(in) | :: | key | |||
character(kind=C_CHAR), | intent(in), | dimension(:) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
character(kind=C_CHAR,len=:), | intent(out), | allocatable | :: | item | ||
integer(kind=int64), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int64), | intent(in) | :: | key | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | key |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int32), | intent(out) | :: | item | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | key | |||
integer(kind=int32), | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
integer(kind=int64), | intent(out) | :: | item | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | key | |||
integer(kind=int64), | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
real(kind=real32), | intent(out) | :: | item | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | key | |||
real(kind=real32), | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
real(kind=real64), | intent(out) | :: | item | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | key | |||
real(kind=real64), | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
complex(kind=real32), | intent(out) | :: | item | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | key | |||
complex(kind=real32), | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
complex(kind=real64), | intent(out) | :: | item | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | key | |||
complex(kind=real64), | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
logical, | intent(out) | :: | item | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | key | |||
logical, | intent(in) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
character(kind=C_CHAR), | intent(out), | dimension(:), pointer | :: | item | ||
character(kind=C_CHAR,len=*), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | key | |||
character(kind=C_CHAR), | intent(in), | dimension(:) | :: | item |
Get value at a given key. KeyError if key does not exist
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
character(kind=C_CHAR,len=:), | intent(out), | allocatable | :: | item | ||
character(kind=C_CHAR,len=*), | intent(in) | :: | key |
Inserts value at given key. Sets value if key already exists.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(inout) | :: | self | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | key | |||
character(kind=C_CHAR,len=*), | intent(in) | :: | item |
Get number of key-value pairs.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(in) | :: | self | |||
integer(kind=int32), | intent(out) | :: | length |
Get number of key-value pairs.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Mapping), | intent(in) | :: | self | |||
integer(kind=int64), | intent(out) | :: | length |
Checks if key is contained in datastructure.