Alternate version of json_get_integer_by_path, where "path" is kind=CDK.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(json_core), | intent(inout) | :: | json | |||
type(json_value), | intent(in), | pointer | :: | me | ||
character(kind=CDK,len=*), | intent(in) | :: | path | |||
integer(kind=IK), | intent(out) | :: | value | |||
logical(kind=LK), | intent(out), | optional | :: | found |
subroutine wrap_json_get_integer_by_path(json, me, path, value, found)
implicit none
class(json_core),intent(inout) :: json
type(json_value),pointer,intent(in) :: me
character(kind=CDK,len=*),intent(in) :: path
integer(IK),intent(out) :: value
logical(LK),intent(out),optional :: found
call json%get(me, to_unicode(path), value, found)
end subroutine wrap_json_get_integer_by_path