Alternate version of json_value_add_real where val
is real32
.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(json_core), | intent(inout) | :: | json | |||
type(json_value), | pointer | :: | p | |||
character(kind=CK,len=*), | intent(in) | :: | name | variable name |
||
real(kind=real32), | intent(in) | :: | val | real value |
subroutine json_value_add_real32(json,p,name,val)
implicit none
class(json_core),intent(inout) :: json
type(json_value),pointer :: p
character(kind=CK,len=*),intent(in) :: name !! variable name
real(real32),intent(in) :: val !! real value
call json%add(p,name,real(val,RK))
end subroutine json_value_add_real32