Alternate version of json_update_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) | :: | path |
path to the variable in the structure |
||
| real(kind=real32), | intent(in) | :: | val |
the new value |
||
| logical(kind=LK), | intent(out) | :: | found |
if the variable was found and was a scalar. |
subroutine json_update_real32(json,p,path,val,found) implicit none class(json_core),intent(inout) :: json type(json_value),pointer :: p character(kind=CK,len=*),intent(in) :: path !! path to the variable in the structure real(real32),intent(in) :: val !! the new value logical(LK),intent(out) :: found !! if the variable was found and was a scalar. call json%update(p,path,real(val,RK),found) end subroutine json_update_real32