wrap_json_value_create_array Subroutine

private subroutine wrap_json_value_create_array(me, name)

Arguments

Type IntentOptional AttributesName
type(json_value), , pointer:: me
character(kind=CDK,len=*), intent(in) :: name

Description

A wrapper for json_value_create_array so that json_create_array may be called with an actual argument, corresponding to the dummy argument 'name', that is either of 'DEFAULT' or 'ISO_10646' character kind.

Calls

proc~~wrap_json_value_create_array~~CallsGraph proc~wrap_json_value_create_array wrap_json_value_create_array proc~json_value_create_array json_value_create_array proc~wrap_json_value_create_array->proc~json_value_create_array interface~to_unicode to_unicode proc~wrap_json_value_create_array->interface~to_unicode proc~json_value_create json_value_create proc~json_value_create_array->proc~json_value_create proc~to_array to_array proc~json_value_create_array->proc~to_array 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 proc~destroy_json_data destroy_json_data proc~to_array->proc~destroy_json_data
Help

Source Code

    subroutine wrap_json_value_create_array(me,name)

    implicit none

    type(json_value),pointer             :: me
    character(kind=CDK,len=*),intent(in) :: name

    call json_value_create_array(me,to_unicode(name))

    end subroutine wrap_json_value_create_array