Allocate a json_value pointer and make it a real(RK) variable. The pointer should not already be allocated.
type(json_value),pointer :: p type(json_core) :: json call json%create_double(p,'value',1.0_RK)
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(json_core), | intent(inout) | :: | json | |||
type(json_value), | pointer | :: | p | |||
real(kind=RK), | intent(in) | :: | val | |||
character(kind=CK,len=*), | intent(in) | :: | name |
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed arrows point from an interface to procedures which implement that interface. This could include the module procedures in a generic interface or the implementation in a submodule of an interface in a parent module. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
subroutine json_value_create_double(json,p,val,name)
implicit none
class(json_core),intent(inout) :: json
type(json_value),pointer :: p
character(kind=CK,len=*),intent(in) :: name
real(RK),intent(in) :: val
call json_value_create(p)
call to_double(p,val,name)
end subroutine json_value_create_double