From Jason Turner

[time.cal.mwdlast.nonmembers]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpcsdqo9n4/{from.md → to.md} +22 -0
tmp/tmpcsdqo9n4/{from.md → to.md} RENAMED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #### Non-member functions <a id="time.cal.mwdlast.nonmembers">[[time.cal.mwdlast.nonmembers]]</a>
2
+
3
+ ``` cpp
4
+ constexpr bool operator==(const month_weekday_last& x, const month_weekday_last& y) noexcept;
5
+ ```
6
+
7
+ *Returns:*
8
+ `x.month() == y.month() && x.weekday_last() == y.weekday_last()`.
9
+
10
+ ``` cpp
11
+ template<class charT, class traits>
12
+ basic_ostream<charT, traits>&
13
+ operator<<(basic_ostream<charT, traits>& os, const month_weekday_last& mwdl);
14
+ ```
15
+
16
+ *Effects:* Equivalent to:
17
+
18
+ ``` cpp
19
+ return os << format(os.getloc(), STATICALLY-WIDEN<charT>("{}/{}"),
20
+ mwdl.month(), mwdl.weekday_last());
21
+ ```
22
+