tmp/tmpy_wmjoqh/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### Concept <a id="concept.constructible">[[concept.constructible]]</a>
|
| 2 |
+
|
| 3 |
+
The `constructible_from` concept constrains the initialization of a
|
| 4 |
+
variable of a given type with a particular set of argument types.
|
| 5 |
+
|
| 6 |
+
``` cpp
|
| 7 |
+
template<class T, class... Args>
|
| 8 |
+
concept constructible_from = destructible<T> && is_constructible_v<T, Args...>;
|
| 9 |
+
```
|
| 10 |
+
|