Wrapper for json_add_string_vec_by_path where "path" and "value" are kind=CDK).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(json_core), | intent(inout) | :: | json | |||
type(json_value), | pointer | :: | me | the JSON structure |
||
character(kind=CDK,len=*), | intent(in) | :: | path | the path to the variable |
||
character(kind=CDK,len=*), | intent(in), | dimension(:) | :: | value | the vector to add |
|
logical(kind=LK), | intent(out), | optional | :: | found | if the variable was found |
|
logical(kind=LK), | intent(out), | optional | :: | was_created | if the variable had to be created |
|
integer(kind=IK), | intent(in), | optional | dimension(:) | :: | ilen | the string lengths of each
element in |
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed arrows point from an interface to procedures which implement that interface. This could include the module procedures in a generic interface or the implementation in a submodule of an interface in a parent module. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
subroutine wrap_json_add_string_vec_by_path(json,me,path,value,&
found,was_created,ilen)
implicit none
class(json_core),intent(inout) :: json
type(json_value),pointer :: me !! the JSON structure
character(kind=CDK,len=*),intent(in) :: path !! the path to the variable
character(kind=CDK,len=*),dimension(:),intent(in):: value !! the vector to add
logical(LK),intent(out),optional :: found !! if the variable was found
logical(LK),intent(out),optional :: was_created !! if the variable had to be created
integer(IK),dimension(:),intent(in),optional :: ilen !! the string lengths of each
!! element in `value`. If not present,
!! the full `len(value)` string is added
!! for each element.
call json%json_add_string_vec_by_path(me,to_unicode(path),to_unicode(value),&
found,was_created,ilen)
end subroutine wrap_json_add_string_vec_by_path