wrap_json_file_valid_path Function

private function wrap_json_file_valid_path(me, path) result(found)

Alternate version of json_file_valid_path, where "path" is kind=CDK.

Arguments

Type IntentOptional AttributesName
class(json_file), intent(inout) :: me
character(kind=CDK,len=*), intent(in) :: path

the path to the variable

Return Value logical(kind=LK)

if the variable was found


Calls

proc~~wrap_json_file_valid_path~~CallsGraph proc~wrap_json_file_valid_path wrap_json_file_valid_path interface~to_unicode to_unicode proc~wrap_json_file_valid_path->interface~to_unicode proc~to_uni_vec to_uni_vec interface~to_unicode->proc~to_uni_vec proc~to_uni to_uni interface~to_unicode->proc~to_uni

Contents


Source Code

    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