From 5bc5a7f0bbbbcafa358ba00f40593801392b3f7c Mon Sep 17 00:00:00 2001
From: Howard Hinnant
class link
{
+private:
+ std::string name_; // exposition only
+ std::string target_; // exposition only
+
public:
link(const link&) = default;
link& operator=(const link&) = default;
@@ -10175,6 +10179,78 @@ an alternative name is
target()
. link
s will be constr
for you when the time zone database is initialized.
+const string& link::name() const ++
++ ++Returns:
+name_
. +
+const string& link::target() const ++
++ ++Returns:
+target_
. +
+bool operator==(const link& x, const link& y) ++
++ ++Returns:
+x.name() == y.name()
. +
+bool operator!=(const link& x, const link& y) ++
++ ++Returns:
+!(x == y)
. +
+bool operator< (const link& x, const link& y) ++
++ ++Returns:
+x.name() < y.name()
. +
+bool operator> (const link& x, const link& y) ++
++ ++Returns:
+y < x
. +
+bool operator<=(const link& x, const link& y) ++
++ ++Returns:
+!(y < x)
. +
+bool operator>=(const link& x, const link& y); ++
+++Returns:
+!(x < y)
. +