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.

Type Bound

json_file

Arguments

Type IntentOptional Attributes Name
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 json_file_module::json_file%wrap_json_file_valid_path interface~to_unicode json_string_utilities::to_unicode proc~wrap_json_file_valid_path->interface~to_unicode valid_path valid_path proc~wrap_json_file_valid_path->valid_path proc~to_uni json_string_utilities::to_uni interface~to_unicode->proc~to_uni proc~to_uni_vec json_string_utilities::to_uni_vec interface~to_unicode->proc~to_uni_vec

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