Alternate version of json_update_logical, where path
is kind=CDK.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(json_core), | intent(inout) | :: | json | |||
type(json_value), | pointer | :: | p | |||
character(kind=CDK, len=*), | intent(in) | :: | path |
path to the variable in the structure |
||
logical(kind=LK), | intent(in) | :: | val |
the new value |
||
logical(kind=LK), | intent(out) | :: | found |
if the variable was found and was a scalar. |
subroutine wrap_json_update_logical(json,p,path,val,found) implicit none class(json_core),intent(inout) :: json type(json_value),pointer :: p character(kind=CDK,len=*),intent(in) :: path !! path to the variable in the structure logical(LK),intent(in) :: val !! the new value logical(LK),intent(out) :: found !! if the variable was found and was a scalar. call json%update(p,to_unicode(path),val,found) end subroutine wrap_json_update_logical