Constructors
Declared in <absl/time/time.h>
Constructs the UTC time zone; prefer UTCTimeZone() to be explicit.
constexpr
TimeZone() = default;
» more...
Constructs a copy of another time zone.
constexpr
TimeZone(TimeZone const& other) = default;
» more...
Constructs a time zone wrapping the given cctz time zone.
explicit
TimeZone(/* implementation-defined */::cctz::time_zone tz);
» more...
| Name | Description |
|---|---|
| other | The time zone to copy. |
| tz | The underlying cctz time zone. |