Alternate version of json_file_get_logical_vec, where "path" is kind=CDK.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(json_file), | intent(inout) | :: | me | |||
character(kind=CDK,len=*), | intent(in) | :: | path | the path to the variable |
||
logical(kind=LK), | intent(out), | dimension(:), allocatable | :: | vec | the value vector |
|
logical(kind=LK), | intent(out), | optional | :: | found | if it was really found |
subroutine wrap_json_file_get_logical_vec(me, path, vec, found)
implicit none
class(json_file),intent(inout) :: me
character(kind=CDK,len=*),intent(in) :: path !! the path to the variable
logical(LK),dimension(:),allocatable,intent(out) :: vec !! the value vector
logical(LK),intent(out),optional :: found !! if it was really found
call me%get(to_unicode(path), vec, found)
end subroutine wrap_json_file_get_logical_vec