Getter functions to manipulate TOML arrays
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(toml_array), | intent(inout) | :: | array |
Instance of the TOML array |
||
integer, | intent(in) | :: | pos |
Position in the array |
||
type(toml_table), | intent(out), | pointer | :: | ptr |
Pointer to child table |
|
integer, | intent(out), | optional | :: | stat |
Status of operation |
|
integer, | intent(out), | optional | :: | origin |
Origin in the data structure |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(toml_array), | intent(inout) | :: | array |
Instance of the TOML array |
||
integer, | intent(in) | :: | pos |
Position in the array |
||
type(toml_array), | intent(out), | pointer | :: | ptr |
Pointer to child array |
|
integer, | intent(out), | optional | :: | stat |
Status of operation |
|
integer, | intent(out), | optional | :: | origin |
Origin in the data structure |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(toml_array), | intent(inout) | :: | array |
Instance of the TOML array |
||
integer, | intent(in) | :: | pos |
Position in the array |
||
type(toml_keyval), | intent(out), | pointer | :: | ptr |
Pointer to child value |
|
integer, | intent(out), | optional | :: | stat |
Status of operation |
|
integer, | intent(out), | optional | :: | origin |
Origin in the data structure |
Retrieve TOML value as deferred-length character
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(toml_array), | intent(inout) | :: | array |
Instance of the TOML array |
||
integer, | intent(in) | :: | pos |
Position in the array |
||
character(kind=tfc, len=:), | intent(out), | allocatable | :: | val |
String value |
|
integer, | intent(out), | optional | :: | stat |
Status of operation |
|
integer, | intent(out), | optional | :: | origin |
Origin in the data structure |
Retrieve TOML value as single precision floating point number
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(toml_array), | intent(inout) | :: | array |
Instance of the TOML array |
||
integer, | intent(in) | :: | pos |
Position in the array |
||
real(kind=tf_sp), | intent(out) | :: | val |
Floating point value |
||
integer, | intent(out), | optional | :: | stat |
Status of operation |
|
integer, | intent(out), | optional | :: | origin |
Origin in the data structure |
Retrieve TOML value as double precision floating point number
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(toml_array), | intent(inout) | :: | array |
Instance of the TOML array |
||
integer, | intent(in) | :: | pos |
Position in the array |
||
real(kind=tf_dp), | intent(out) | :: | val |
Floating point value |
||
integer, | intent(out), | optional | :: | stat |
Status of operation |
|
integer, | intent(out), | optional | :: | origin |
Origin in the data structure |
Retrieve TOML value as integer value
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(toml_array), | intent(inout) | :: | array |
Instance of the TOML array |
||
integer, | intent(in) | :: | pos |
Position in the array |
||
integer(kind=tf_i1), | intent(out) | :: | val |
Integer value |
||
integer, | intent(out), | optional | :: | stat |
Status of operation |
|
integer, | intent(out), | optional | :: | origin |
Origin in the data structure |
Retrieve TOML value as integer value
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(toml_array), | intent(inout) | :: | array |
Instance of the TOML array |
||
integer, | intent(in) | :: | pos |
Position in the array |
||
integer(kind=tf_i2), | intent(out) | :: | val |
Integer value |
||
integer, | intent(out), | optional | :: | stat |
Status of operation |
|
integer, | intent(out), | optional | :: | origin |
Origin in the data structure |
Retrieve TOML value as integer value
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(toml_array), | intent(inout) | :: | array |
Instance of the TOML array |
||
integer, | intent(in) | :: | pos |
Position in the array |
||
integer(kind=tf_i4), | intent(out) | :: | val |
Integer value |
||
integer, | intent(out), | optional | :: | stat |
Status of operation |
|
integer, | intent(out), | optional | :: | origin |
Origin in the data structure |
Retrieve TOML value as integer value
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(toml_array), | intent(inout) | :: | array |
Instance of the TOML array |
||
integer, | intent(in) | :: | pos |
Position in the array |
||
integer(kind=tf_i8), | intent(out) | :: | val |
Integer value |
||
integer, | intent(out), | optional | :: | stat |
Status of operation |
|
integer, | intent(out), | optional | :: | origin |
Origin in the data structure |
Retrieve TOML value as boolean
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(toml_array), | intent(inout) | :: | array |
Instance of the TOML array |
||
integer, | intent(in) | :: | pos |
Position in the array |
||
logical, | intent(out) | :: | val |
Integer value |
||
integer, | intent(out), | optional | :: | stat |
Status of operation |
|
integer, | intent(out), | optional | :: | origin |
Origin in the data structure |
Retrieve TOML value as datetime
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(toml_array), | intent(inout) | :: | array |
Instance of the TOML array |
||
integer, | intent(in) | :: | pos |
Position in the array |
||
type(toml_datetime), | intent(out) | :: | val |
Integer value |
||
integer, | intent(out), | optional | :: | stat |
Status of operation |
|
integer, | intent(out), | optional | :: | origin |
Origin in the data structure |
Retrieve TOML value as single precision floating point number
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(toml_array), | intent(inout) | :: | array |
Instance of the TOML array |
||
real(kind=tf_sp), | intent(out), | allocatable | :: | val(:) |
Floating point value |
|
integer, | intent(out), | optional | :: | stat |
Status of operation |
|
integer, | intent(out), | optional | :: | origin |
Origin in the data structure |
Retrieve TOML value as double precision floating point number
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(toml_array), | intent(inout) | :: | array |
Instance of the TOML array |
||
real(kind=tf_dp), | intent(out), | allocatable | :: | val(:) |
Floating point value |
|
integer, | intent(out), | optional | :: | stat |
Status of operation |
|
integer, | intent(out), | optional | :: | origin |
Origin in the data structure |
Retrieve TOML value as integer value
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(toml_array), | intent(inout) | :: | array |
Instance of the TOML array |
||
integer(kind=tf_i1), | intent(out), | allocatable | :: | val(:) |
Integer value |
|
integer, | intent(out), | optional | :: | stat |
Status of operation |
|
integer, | intent(out), | optional | :: | origin |
Origin in the data structure |
Retrieve TOML value as integer value
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(toml_array), | intent(inout) | :: | array |
Instance of the TOML array |
||
integer(kind=tf_i2), | intent(out), | allocatable | :: | val(:) |
Integer value |
|
integer, | intent(out), | optional | :: | stat |
Status of operation |
|
integer, | intent(out), | optional | :: | origin |
Origin in the data structure |
Retrieve TOML value as integer value
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(toml_array), | intent(inout) | :: | array |
Instance of the TOML array |
||
integer(kind=tf_i4), | intent(out), | allocatable | :: | val(:) |
Integer value |
|
integer, | intent(out), | optional | :: | stat |
Status of operation |
|
integer, | intent(out), | optional | :: | origin |
Origin in the data structure |
Retrieve TOML value as integer value
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(toml_array), | intent(inout) | :: | array |
Instance of the TOML array |
||
integer(kind=tf_i8), | intent(out), | allocatable | :: | val(:) |
Integer value |
|
integer, | intent(out), | optional | :: | stat |
Status of operation |
|
integer, | intent(out), | optional | :: | origin |
Origin in the data structure |
Retrieve TOML value as boolean
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(toml_array), | intent(inout) | :: | array |
Instance of the TOML array |
||
logical, | intent(out), | allocatable | :: | val(:) |
Integer value |
|
integer, | intent(out), | optional | :: | stat |
Status of operation |
|
integer, | intent(out), | optional | :: | origin |
Origin in the data structure |
Retrieve TOML value as datetime
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(toml_array), | intent(inout) | :: | array |
Instance of the TOML array |
||
type(toml_datetime), | intent(out), | allocatable | :: | val(:) |
Integer value |
|
integer, | intent(out), | optional | :: | stat |
Status of operation |
|
integer, | intent(out), | optional | :: | origin |
Origin in the data structure |