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.

Type Bound

json_file

Arguments

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

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