From Jason Turner

[time.cal.mwd.members]

Diff to HTML by rtfpessoa

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