tmp/tmpury1tos1/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### Class `last_spec` <a id="time.cal.last">[[time.cal.last]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
namespace std::chrono {
|
| 5 |
+
struct last_spec {
|
| 6 |
+
explicit last_spec() = default;
|
| 7 |
+
};
|
| 8 |
+
}
|
| 9 |
+
```
|
| 10 |
+
|
| 11 |
+
The type `last_spec` is used in conjunction with other calendar types to
|
| 12 |
+
specify the last in a sequence. For example, depending on context, it
|
| 13 |
+
can represent the last day of a month, or the last day of the week of a
|
| 14 |
+
month.
|
| 15 |
+
|