Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(json_value), | intent(inout), | pointer | :: | me | ||
character(kind=CDK,len=*), | intent(in) | :: | path | |||
real(kind=RK), | intent(out) | :: | value | |||
logical(kind=LK), | intent(out), | optional | :: | found |
Alternate version of json_get_double_with_path, where "path" is kind=CDK
subroutine wrap_json_get_double_with_path(me, path, value, found)
implicit none
type(json_value),pointer :: me
character(kind=CDK,len=*),intent(in) :: path
real(RK),intent(out) :: value
logical(LK),intent(out),optional :: found
call json_get_double_with_path(me,to_unicode(path),value,found)
end subroutine wrap_json_get_double_with_path