From Jason Turner

[time.cal.mwd.nonmembers]

Diff to HTML by rtfpessoa

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