tmp/tmp0lo51fqn/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#### Member functions <a id="time.cal.mwdlast.members">[[time.cal.mwdlast.members]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
constexpr month_weekday_last(const chrono::month& m,
|
| 5 |
+
const chrono::weekday_last& wdl) noexcept;
|
| 6 |
+
```
|
| 7 |
+
|
| 8 |
+
*Effects:* Initializes `m_` with `m`, and `wdl_` with `wdl`.
|
| 9 |
+
|
| 10 |
+
``` cpp
|
| 11 |
+
constexpr chrono::month month() const noexcept;
|
| 12 |
+
```
|
| 13 |
+
|
| 14 |
+
*Returns:* `m_`.
|
| 15 |
+
|
| 16 |
+
``` cpp
|
| 17 |
+
constexpr chrono::weekday_last weekday_last() const noexcept;
|
| 18 |
+
```
|
| 19 |
+
|
| 20 |
+
*Returns:* `wdl_`.
|
| 21 |
+
|
| 22 |
+
``` cpp
|
| 23 |
+
constexpr bool ok() const noexcept;
|
| 24 |
+
```
|
| 25 |
+
|
| 26 |
+
*Returns:* `m_.ok() && wdl_.ok()`.
|
| 27 |
+
|