diff --git a/tz.html b/tz.html index 8875a12..987fbed 100644 --- a/tz.html +++ b/tz.html @@ -66,7 +66,7 @@ Commons Attribution 4.0 International License.
  • parse
  • utc_clock
  • Leap
  • -
  • Link
  • +
  • link
  • Installation
  • @@ -120,7 +120,7 @@ Rule: A specification for a single daylight-saving rule. This helps implement consolidate the specifications of Zones.

  • -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 a time_zone. The alternative +A link is an alternative name for a time_zone. The alternative name is name(). The name of the time_zone for which this is -an alternative name is target(). Links will be constructed +an alternative name is target(). links will be constructed for you when the time zone database is initialized.