Add objects to a linked list of json_values.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(json_value), | intent(inout), | pointer | :: | me | ||
| type(json_value), | intent(inout), | pointer | :: | member | the child member to add |
Adds "member" as a child of "me".
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(json_value), | intent(inout), | pointer | :: | me | ||
| character(kind=CK,len=*), | intent(in) | :: | name | |||
| integer(kind=IK), | intent(in) | :: | val |
Add an integer value child to the json_value variable
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(json_value), | intent(inout), | pointer | :: | me | ||
| character(kind=CK,len=*), | intent(in) | :: | name | name of the variable |
||
| integer(kind=IK), | intent(in), | dimension(:) | :: | val | value |
Add an integer vector to the structure.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(json_value), | intent(inout), | pointer | :: | me | ||
| character(kind=CK,len=*), | intent(in) | :: | name | variable name |
||
| real(kind=RK), | intent(in) | :: | val | real value |
Add a real value child to the json_value variable
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(json_value), | intent(inout), | pointer | :: | me | ||
| character(kind=CK,len=*), | intent(in) | :: | name | |||
| real(kind=RK), | intent(in), | dimension(:) | :: | val |
Add a real vector to the structure.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(json_value), | intent(inout), | pointer | :: | me | ||
| character(kind=CK,len=*), | intent(in) | :: | name | name of the variable |
||
| logical(kind=LK), | intent(in) | :: | val | value |
Add a logical value child to the json_value variable
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(json_value), | intent(inout), | pointer | :: | me | ||
| character(kind=CK,len=*), | intent(in) | :: | name | name of the vector |
||
| logical(kind=LK), | intent(in), | dimension(:) | :: | val | value |
Add a logical vector to the structure.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(json_value), | intent(inout), | pointer | :: | me | ||
| character(kind=CK,len=*), | intent(in) | :: | name | name of the variable |
||
| character(kind=CK,len=*), | intent(in) | :: | val | value |
Add a character string child to the json_value variable.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(json_value), | intent(inout), | pointer | :: | me | ||
| character(kind=CK,len=*), | intent(in) | :: | name | variable name |
||
| character(kind=CK,len=*), | intent(in), | dimension(:) | :: | val | array of strings |
|
| logical(kind=LK), | intent(in), | optional | :: | trim_str | if TRIM() should be called for each element |
|
| logical(kind=LK), | intent(in), | optional | :: | adjustl_str | if ADJUSTL() should be called for each element |
Add an array of character strings to the structure.