Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(json_value), | intent(inout), | pointer | :: | me | ||
character(kind=CDK,len=*), | intent(in) | :: | name | name of the variable |
||
logical(kind=LK), | intent(in) | :: | val | value |
Alternate version of json_value_add_logical where "name" is kind=CDK.
subroutine wrap_json_value_add_logical(me, name, val)
implicit none
type(json_value),pointer :: me
character(kind=CDK,len=*),intent(in) :: name !! name of the variable
logical(LK),intent(in) :: val !! value
call json_value_add_logical(me, to_unicode(name), val)
end subroutine wrap_json_value_add_logical