Alternate version of json_file_valid_path, 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 |
if the variable was found
function wrap_json_file_valid_path(me,path) result(found)
implicit none
class(json_file),intent(inout) :: me
character(kind=CDK,len=*),intent(in) :: path !! the path to the variable
logical(LK) :: found !! if the variable was found
found = me%valid_path(to_unicode(path))
end function wrap_json_file_valid_path