wrap_json_value_create_integer Subroutine

private subroutine wrap_json_value_create_integer(json, p, val, name)

A wrapper procedure for json_value_create_integer so that create_integer method may be called with either a 'DEFAULT' or 'ISO_10646' character kind name actual argument.

Arguments

Type IntentOptional AttributesName
class(json_core), intent(inout) :: json
type(json_value), pointer:: p
integer(kind=IK), intent(in) :: val
character(kind=CDK,len=*), intent(in) :: name

Calls

proc~~wrap_json_value_create_integer~~CallsGraph proc~wrap_json_value_create_integer wrap_json_value_create_integer interface~to_unicode to_unicode proc~wrap_json_value_create_integer->interface~to_unicode proc~to_uni_vec to_uni_vec interface~to_unicode->proc~to_uni_vec proc~to_uni to_uni interface~to_unicode->proc~to_uni

Contents


Source Code

    subroutine wrap_json_value_create_integer(json,p,val,name)

    implicit none

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

    call json%create_integer(p,val,to_unicode(name))

    end subroutine wrap_json_value_create_integer