wrap_json_value_create_array Subroutine

private subroutine wrap_json_value_create_array(json, p, name)

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

Arguments

Type IntentOptional Attributes Name
class(json_core), intent(inout) :: json
type(json_value), pointer :: p
character(kind=CDK, len=*), intent(in) :: name

Calls

proc~~wrap_json_value_create_array~~CallsGraph proc~wrap_json_value_create_array wrap_json_value_create_array interface~to_unicode to_unicode proc~wrap_json_value_create_array->interface~to_unicode none~create_array json_core%create_array proc~wrap_json_value_create_array->none~create_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~json_value_create_array json_core%json_value_create_array none~create_array->proc~json_value_create_array proc~json_value_create json_value_create proc~json_value_create_array->proc~json_value_create proc~to_array json_core%to_array proc~json_value_create_array->proc~to_array proc~destroy_json_data destroy_json_data proc~to_array->proc~destroy_json_data

Source Code

    subroutine wrap_json_value_create_array(json,p,name)

    implicit none

    class(json_core),intent(inout)       :: json
    type(json_value),pointer             :: p
    character(kind=CDK,len=*),intent(in) :: name

    call json%create_array(p,to_unicode(name))

    end subroutine wrap_json_value_create_array