
Convert a datetime to UTC.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(datetime_type), | intent(in) | :: | dt |
pure function to_utc(dt) result(utc_dt) !! version: experimental !! !! Convert a datetime to UTC. type(datetime_type), intent(in) :: dt type(datetime_type) :: utc_dt utc_dt = epoch_ms_to_dt(dt_to_utc_ms(dt), 0) end function to_utc