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