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