Read a TOML real value if present.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(toml_table), | intent(inout) | :: | table | |||
| character(len=*), | intent(in) | :: | key | |||
| real, | intent(inout) | :: | v |
subroutine toml_get_real(table, key, v) type(toml_table), intent(inout) :: table character(len=*), intent(in) :: key real, intent(inout) :: v real :: tmp integer :: stat tmp = v call get_value(table, key, tmp, stat=stat) if (stat == toml_stat%success) v = tmp end subroutine toml_get_real