tmp/tmpj3c7c0n4/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#### Overview <a id="time.zone.link.overview">[[time.zone.link.overview]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
namespace std::chrono {
|
| 5 |
+
class time_zone_link {
|
| 6 |
+
public:
|
| 7 |
+
time_zone_link(time_zone_link&&) = default;
|
| 8 |
+
time_zone_link& operator=(time_zone_link&&) = default;
|
| 9 |
+
|
| 10 |
+
// unspecified additional constructors
|
| 11 |
+
|
| 12 |
+
string_view name() const noexcept;
|
| 13 |
+
string_view target() const noexcept;
|
| 14 |
+
};
|
| 15 |
+
}
|
| 16 |
+
```
|
| 17 |
+
|
| 18 |
+
A `time_zone_link` specifies an alternative name for a `time_zone`.
|
| 19 |
+
`time_zone_link`s are constructed when the time zone database is
|
| 20 |
+
initialized.
|
| 21 |
+
|