Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(json_value), | intent(inout), | pointer | :: | me | ||
logical(kind=LK), | intent(in) | :: | val | |||
character(kind=CDK,len=*), | intent(in) | :: | name |
Wrapper for json_value_create_logical so json_create_logical can be called with name of character kind 'DEFAULT' or 'ISO_10646'
subroutine wrap_json_value_create_logical(me,val,name)
implicit none
type(json_value),pointer :: me
character(kind=CDK,len=*),intent(in) :: name
logical(LK),intent(in) :: val
call json_value_create_logical(me,val,to_unicode(name))
end subroutine wrap_json_value_create_logical