Alternate version of json_file_valid_path_op, where "path" is kind=CDK.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(kind=CDK,len=*), | intent(in) | :: | path | the path to the variable |
||
class(json_file), | intent(in) | :: | me | the JSON file |
if the variable was found
function wrap_json_file_valid_path_op(path,me) result(found)
implicit none
character(kind=CDK,len=*),intent(in) :: path !! the path to the variable
class(json_file),intent(in) :: me !! the JSON file
logical(LK) :: found !! if the variable was found
found = to_unicode(path) .in. me
end function wrap_json_file_valid_path_op