wrap_json_file_get_object Subroutine

private subroutine wrap_json_file_get_object(me, path, p, found)

Arguments

Type IntentOptional AttributesName
class(json_file), intent(inout) :: me
character(kind=CDK,len=*), intent(in) :: path
type(json_value), intent(out), pointer:: p
logical(kind=LK), intent(out), optional :: found

Description

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

Calls

proc~~wrap_json_file_get_object~~CallsGraph proc~wrap_json_file_get_object wrap_json_file_get_object proc~json_file_get_object json_file_get_object proc~wrap_json_file_get_object->proc~json_file_get_object interface~to_unicode to_unicode proc~wrap_json_file_get_object->interface~to_unicode proc~json_get_by_path json_get_by_path proc~json_file_get_object->proc~json_get_by_path proc~to_uni to_uni interface~to_unicode->proc~to_uni proc~to_uni_vec to_uni_vec interface~to_unicode->proc~to_uni_vec interface~json_get_child json_get_child proc~json_get_by_path->interface~json_get_child proc~json_clear_exceptions json_clear_exceptions proc~json_get_by_path->proc~json_clear_exceptions interface~throw_exception throw_exception proc~json_get_by_path->interface~throw_exception proc~string_to_integer string_to_integer proc~json_get_by_path->proc~string_to_integer proc~json_value_get_by_index json_value_get_by_index interface~json_get_child->proc~json_value_get_by_index proc~json_value_get_by_name_chars json_value_get_by_name_chars interface~json_get_child->proc~json_value_get_by_name_chars proc~json_throw_exception json_throw_exception interface~throw_exception->proc~json_throw_exception proc~string_to_integer->interface~throw_exception proc~json_value_get_by_index->interface~throw_exception proc~json_value_get_by_name_chars->interface~throw_exception proc~json_count json_count proc~json_value_get_by_name_chars->proc~json_count
Help

Source Code

    subroutine wrap_json_file_get_object(me, path, p, found)

    implicit none

    class(json_file),intent(inout)       :: me
    character(kind=CDK,len=*),intent(in) :: path
    type(json_value),pointer,intent(out) :: p
    logical(LK),intent(out),optional     :: found

    call json_file_get_object(me, to_unicode(path), p, found)

    end subroutine wrap_json_file_get_object