tmp/tmpdhoal9g2/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#### Destructor <a id="expected.void.dtor">[[expected.void.dtor]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
constexpr ~expected();
|
| 5 |
+
```
|
| 6 |
+
|
| 7 |
+
*Effects:* If `has_value()` is `false`, destroys *unex*.
|
| 8 |
+
|
| 9 |
+
*Remarks:* If `is_trivially_destructible_v<E>` is `true`, then this
|
| 10 |
+
destructor is a trivial destructor.
|
| 11 |
+
|