tmp/tmpekawz8r2/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#### Non-member functions <a id="time.zone.link.nonmembers">[[time.zone.link.nonmembers]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
bool operator==(const time_zone_link& x, const time_zone_link& y) noexcept;
|
| 5 |
+
```
|
| 6 |
+
|
| 7 |
+
*Returns:* `x.name() == y.name()`.
|
| 8 |
+
|
| 9 |
+
``` cpp
|
| 10 |
+
strong_ordering operator<=>(const time_zone_link& x, const time_zone_link& y) noexcept;
|
| 11 |
+
```
|
| 12 |
+
|
| 13 |
+
*Returns:* `x.name() <=> y.name()`.
|
| 14 |
+
|