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.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(json_core), | intent(inout) | :: | json | |||
type(json_value), | pointer | :: | p | |||
integer(kind=IK), | intent(in) | :: | val | |||
character(kind=CDK,len=*), | intent(in) | :: | name |
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