Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(json_value), | intent(inout), | pointer | :: | me | ||
logical(kind=LK), | intent(in) | :: | val | variable value |
||
character(kind=CK,len=*), | intent(in) | :: | name | variable name |
Allocate a json_value pointer and make it a logical(LK) variable. The pointer should not already be allocated.
type(json_value),pointer :: p call json_create(p,'value',.true.)
subroutine json_value_create_logical(me,val,name)
implicit none
type(json_value),pointer :: me
character(kind=CK,len=*),intent(in) :: name !! variable name
logical(LK),intent(in) :: val !! variable value
call json_value_create(me)
call to_logical(me,val,name)
end subroutine json_value_create_logical