tmp/tmp9h12ychz/{from.md → to.md}
RENAMED
|
@@ -1,17 +1,17 @@
|
|
| 1 |
#### Creation <a id="unique.ptr.create">[[unique.ptr.create]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
-
template<class T, class... Args> unique_ptr<T> make_unique(Args&&... args);
|
| 5 |
```
|
| 6 |
|
| 7 |
*Constraints:* `T` is not an array type.
|
| 8 |
|
| 9 |
*Returns:* `unique_ptr<T>(new T(std::forward<Args>(args)...))`.
|
| 10 |
|
| 11 |
``` cpp
|
| 12 |
-
template<class T> unique_ptr<T> make_unique(size_t n);
|
| 13 |
```
|
| 14 |
|
| 15 |
*Constraints:* `T` is an array of unknown bound.
|
| 16 |
|
| 17 |
*Returns:* `unique_ptr<T>(new remove_extent_t<T>[n]())`.
|
|
@@ -21,19 +21,19 @@ template<class T, class... Args> unspecified make_unique(Args&&...) = delete;
|
|
| 21 |
```
|
| 22 |
|
| 23 |
*Constraints:* `T` is an array of known bound.
|
| 24 |
|
| 25 |
``` cpp
|
| 26 |
-
template<class T> unique_ptr<T> make_unique_for_overwrite();
|
| 27 |
```
|
| 28 |
|
| 29 |
*Constraints:* `T` is not an array type.
|
| 30 |
|
| 31 |
*Returns:* `unique_ptr<T>(new T)`.
|
| 32 |
|
| 33 |
``` cpp
|
| 34 |
-
template<class T> unique_ptr<T> make_unique_for_overwrite(size_t n);
|
| 35 |
```
|
| 36 |
|
| 37 |
*Constraints:* `T` is an array of unknown bound.
|
| 38 |
|
| 39 |
*Returns:* `unique_ptr<T>(new remove_extent_t<T>[n])`.
|
|
|
|
| 1 |
#### Creation <a id="unique.ptr.create">[[unique.ptr.create]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
+
template<class T, class... Args> constexpr unique_ptr<T> make_unique(Args&&... args);
|
| 5 |
```
|
| 6 |
|
| 7 |
*Constraints:* `T` is not an array type.
|
| 8 |
|
| 9 |
*Returns:* `unique_ptr<T>(new T(std::forward<Args>(args)...))`.
|
| 10 |
|
| 11 |
``` cpp
|
| 12 |
+
template<class T> constexpr unique_ptr<T> make_unique(size_t n);
|
| 13 |
```
|
| 14 |
|
| 15 |
*Constraints:* `T` is an array of unknown bound.
|
| 16 |
|
| 17 |
*Returns:* `unique_ptr<T>(new remove_extent_t<T>[n]())`.
|
|
|
|
| 21 |
```
|
| 22 |
|
| 23 |
*Constraints:* `T` is an array of known bound.
|
| 24 |
|
| 25 |
``` cpp
|
| 26 |
+
template<class T> constexpr unique_ptr<T> make_unique_for_overwrite();
|
| 27 |
```
|
| 28 |
|
| 29 |
*Constraints:* `T` is not an array type.
|
| 30 |
|
| 31 |
*Returns:* `unique_ptr<T>(new T)`.
|
| 32 |
|
| 33 |
``` cpp
|
| 34 |
+
template<class T> constexpr unique_ptr<T> make_unique_for_overwrite(size_t n);
|
| 35 |
```
|
| 36 |
|
| 37 |
*Constraints:* `T` is an array of unknown bound.
|
| 38 |
|
| 39 |
*Returns:* `unique_ptr<T>(new remove_extent_t<T>[n])`.
|