From 6102717e7f3cbdb6cccd8e5220107915f0aba002 Mon Sep 17 00:00:00 2001
From: Howard Hinnant parse
utc_clock
Leap
Link
link
-Link: This is an alternative name for a Zone. +link: This is an alternative name for a Zone.
Leap: The date of the insertion of a leap second. @@ -768,7 +768,7 @@ struct TZ_DB { std::string version; std::vector<time_zone> zones; - std::vector<Link> links; + std::vector<link> links; std::vector<Leap> leaps; std::vector<Rule> rules; }; @@ -840,9 +840,9 @@ database if this is the first reference to the database.
Returns: If a time_zone
is found for which
name() == tz_name
, returns a pointer to that time_zone
.
-Otherwise if a Link
is found where tz_name == link.name()
,
+Otherwise if a link
is found where tz_name == link.name()
,
then a pointer is returned to the time_zone
for which
-zone.name() == link.target()
[Note: A Link
is an
+zone.name() == link.target()
[Note: A link
is an
alternative name for a time_zone
. — end note]
@@ -2396,14 +2396,14 @@ with sys_time<Duration>
.
Link
link
-class Link +class link { public: - Link(const Link&) = default; - Link& operator=(const Link&) = default; + link(const link&) = default; + link& operator=(const link&) = default; // Undocumented constructors @@ -2411,17 +2411,17 @@ public: const std::string& target() const; }; -bool operator==(const Link& x, const Link& y); -bool operator!=(const Link& x, const Link& y); -bool operator< (const Link& x, const Link& y); -bool operator> (const Link& x, const Link& y); -bool operator<=(const Link& x, const Link& y); -bool operator>=(const Link& x, const Link& y); +bool operator==(const link& x, const link& y); +bool operator!=(const link& x, const link& y); +bool operator< (const link& x, const link& y); +bool operator> (const link& x, const link& y); +bool operator<=(const link& x, const link& y); +bool operator>=(const link& x, const link& y);-A
Link
is an alternative name for atime_zone
. The alternative +Alink
is an alternative name for atime_zone
. The alternative name isname()
. The name of thetime_zone
for which this is -an alternative name istarget()
.Link
s will be constructed +an alternative name istarget()
.link
s will be constructed for you when the time zone database is initialized.