Wrap json_value_create_string so that create_string
method may be called
with actual character string arguments for name
and val
that are BOTH of
'DEFAULT' or 'ISO_10646' character kind.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(json_core), | intent(inout) | :: | json | |||
type(json_value), | pointer | :: | p | |||
character(kind=CDK,len=*), | intent(in) | :: | val | |||
character(kind=CDK,len=*), | intent(in) | :: | name | |||
logical(kind=LK), | intent(in), | optional | :: | trim_str | if TRIM() should be called for the |
|
logical(kind=LK), | intent(in), | optional | :: | adjustl_str | if ADJUSTL() should be called for the |
subroutine wrap_json_value_create_string(json,p,val,name,trim_str,adjustl_str)
implicit none
class(json_core),intent(inout) :: json
type(json_value),pointer :: p
character(kind=CDK,len=*),intent(in) :: val
character(kind=CDK,len=*),intent(in) :: name
logical(LK),intent(in),optional :: trim_str !! if TRIM() should be called for the `val`
logical(LK),intent(in),optional :: adjustl_str !! if ADJUSTL() should be called for the `val`
call json%create_string(p,to_unicode(val),to_unicode(name),trim_str,adjustl_str)
end subroutine wrap_json_value_create_string