wrap_json_get_double_vec_with_path Subroutine

private subroutine wrap_json_get_double_vec_with_path(me, path, vec, found)

Arguments

Type IntentOptional AttributesName
type(json_value), , pointer:: me
character(kind=CDK,len=*), intent(in) :: path
real(kind=RK), intent(out), dimension(:), allocatable:: vec
logical(kind=LK), intent(out), optional :: found

Description

Alternate version of json_get_double_vec_with_path, where "path" is kind=CDK

Calls

proc~~wrap_json_get_double_vec_with_path~~CallsGraph proc~wrap_json_get_double_vec_with_path wrap_json_get_double_vec_with_path proc~json_get_double_vec_with_path json_get_double_vec_with_path proc~wrap_json_get_double_vec_with_path->proc~json_get_double_vec_with_path interface~to_unicode to_unicode proc~wrap_json_get_double_vec_with_path->interface~to_unicode interface~json_get json_get proc~json_get_double_vec_with_path->interface~json_get 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->proc~json_get_double_vec_with_path proc~json_get_string json_get_string interface~json_get->proc~json_get_string proc~json_get_logical json_get_logical interface~json_get->proc~json_get_logical proc~json_get_integer_vec_with_path json_get_integer_vec_with_path interface~json_get->proc~json_get_integer_vec_with_path proc~json_get_logical_vec_with_path json_get_logical_vec_with_path interface~json_get->proc~json_get_logical_vec_with_path proc~json_get_array json_get_array interface~json_get->proc~json_get_array proc~json_get_double json_get_double interface~json_get->proc~json_get_double proc~json_get_string_vec_with_path json_get_string_vec_with_path interface~json_get->proc~json_get_string_vec_with_path proc~json_get_by_path json_get_by_path interface~json_get->proc~json_get_by_path proc~json_get_integer json_get_integer interface~json_get->proc~json_get_integer proc~json_get_double_with_path json_get_double_with_path interface~json_get->proc~json_get_double_with_path proc~json_get_logical_with_path json_get_logical_with_path interface~json_get->proc~json_get_logical_with_path proc~json_get_integer_with_path json_get_integer_with_path interface~json_get->proc~json_get_integer_with_path proc~json_get_logical_vec json_get_logical_vec interface~json_get->proc~json_get_logical_vec proc~json_get_string_with_path json_get_string_with_path interface~json_get->proc~json_get_string_with_path proc~json_get_string_vec json_get_string_vec interface~json_get->proc~json_get_string_vec proc~json_get_integer_vec json_get_integer_vec interface~json_get->proc~json_get_integer_vec proc~json_get_array_with_path json_get_array_with_path interface~json_get->proc~json_get_array_with_path proc~json_get_double_vec json_get_double_vec interface~json_get->proc~json_get_double_vec proc~unescape_string unescape_string proc~json_get_string->proc~unescape_string interface~throw_exception throw_exception proc~json_get_string->interface~throw_exception proc~json_get_logical->interface~throw_exception proc~json_get_integer_vec_with_path->interface~json_get proc~json_get_logical_vec_with_path->interface~json_get proc~json_get_array->interface~throw_exception proc~json_count json_count proc~json_get_array->proc~json_count proc~json_get_double->interface~throw_exception proc~json_get_string_vec_with_path->interface~json_get proc~json_get_by_path->interface~throw_exception 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 proc~string_to_integer string_to_integer proc~json_get_by_path->proc~string_to_integer proc~json_get_integer->interface~throw_exception proc~json_get_double_with_path->proc~json_get_double proc~json_get_double_with_path->proc~json_get_by_path proc~json_get_double_with_path->interface~throw_exception proc~json_get_double_with_path->proc~json_clear_exceptions proc~json_get_logical_with_path->proc~json_get_logical proc~json_get_logical_with_path->proc~json_get_by_path proc~json_get_logical_with_path->interface~throw_exception proc~json_get_logical_with_path->proc~json_clear_exceptions proc~json_get_integer_with_path->proc~json_get_by_path proc~json_get_integer_with_path->proc~json_get_integer proc~json_get_integer_with_path->interface~throw_exception proc~json_get_integer_with_path->proc~json_clear_exceptions proc~json_get_logical_vec->interface~json_get proc~json_get_string_with_path->proc~json_get_string proc~json_get_string_with_path->proc~json_get_by_path proc~json_get_string_with_path->interface~throw_exception proc~json_get_string_with_path->proc~json_clear_exceptions proc~json_get_string_vec->interface~json_get proc~json_get_integer_vec->interface~json_get proc~json_get_array_with_path->proc~json_get_array proc~json_get_array_with_path->proc~json_get_by_path proc~json_get_array_with_path->interface~throw_exception proc~json_get_array_with_path->proc~json_clear_exceptions proc~json_get_double_vec->interface~json_get proc~unescape_string->interface~to_unicode proc~unescape_string->interface~throw_exception proc~json_throw_exception json_throw_exception interface~throw_exception->proc~json_throw_exception 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~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_value_get_by_name_chars->proc~json_count
Help

Source Code

    subroutine wrap_json_get_double_vec_with_path(me, path, vec, found)

    implicit none

    type(json_value),pointer                      :: me
    character(kind=CDK,len=*),intent(in)          :: path
    real(RK),dimension(:),allocatable,intent(out) :: vec
    logical(LK),intent(out),optional              :: found

    call json_get_double_vec_with_path(me, to_unicode(path), vec, found)

    end subroutine wrap_json_get_double_vec_with_path