Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(json_value), | intent(inout), | pointer | :: | p | ||
character(kind=CDK,len=*), | intent(in) | :: | name | |||
integer(kind=IK), | intent(in) | :: | val | |||
logical(kind=LK), | intent(out) | :: | found |
Alternate version of json_update_integer, where "name" is kind=CDK.
subroutine wrap_json_update_integer(p,name,val,found)
implicit none
type(json_value),pointer :: p
character(kind=CDK,len=*),intent(in) :: name
integer(IK),intent(in) :: val
logical(LK),intent(out) :: found
call json_update_integer(p,to_unicode(name),val,found)
end subroutine wrap_json_update_integer