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