Wrapper for json_value_create_logical so create_logical method can
be called with name of character kind ‘DEFAULT’ or ‘ISO_10646’
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(json_core), | intent(inout) | :: | json | |||
| type(json_value), | pointer | :: | p | |||
| logical(kind=LK), | intent(in) | :: | val | |||
| character(kind=CDK,len=*), | intent(in) | :: | name |
subroutine wrap_json_value_create_logical(json,p,val,name)
implicit none
class(json_core),intent(inout) :: json
type(json_value),pointer :: p
logical(LK),intent(in) :: val
character(kind=CDK,len=*),intent(in) :: name
call json%create_logical(p,val,to_unicode(name))
end subroutine wrap_json_value_create_logical