Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(json_value), | , | pointer | :: | me | ||
character(kind=CDK,len=*), | intent(in) | :: | path | |||
integer(kind=IK), | intent(out), | dimension(:), allocatable | :: | vec | ||
logical(kind=LK), | intent(out), | optional | :: | found |
Alternate version of json_get_integer_vec_with_path, where "path" is kind=CDK
subroutine wrap_json_get_integer_vec_with_path(me, path, vec, found)
implicit none
type(json_value),pointer :: me
character(kind=CDK,len=*),intent(in) :: path
integer(IK),dimension(:),allocatable,intent(out) :: vec
logical(LK),intent(out),optional :: found
call json_get_integer_vec_with_path(me,path=to_unicode(path),vec=vec,found=found)
end subroutine wrap_json_get_integer_vec_with_path