wrap_json_file_valid_path_op Function

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

Alternate version of json_file_valid_path_op, where “path” is kind=CDK.

Arguments

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

the path to the variable

class(json_file), intent(in) :: me

the JSON file

Return Value logical(kind=LK)

if the variable was found


Calls

proc~~wrap_json_file_valid_path_op~~CallsGraph proc~wrap_json_file_valid_path_op wrap_json_file_valid_path_op interface~to_unicode to_unicode proc~wrap_json_file_valid_path_op->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_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