tmp/tmpb8ob1c2s/{from.md → to.md}
RENAMED
|
@@ -86,14 +86,10 @@ stored pointer points.
|
|
| 86 |
*Returns:* `get()[i]`.
|
| 87 |
|
| 88 |
##### `unique_ptr` modifiers <a id="unique.ptr.runtime.modifiers">[[unique.ptr.runtime.modifiers]]</a>
|
| 89 |
|
| 90 |
``` cpp
|
| 91 |
-
void reset(pointer p = pointer()) noexcept;
|
| 92 |
void reset(nullptr_t p) noexcept;
|
| 93 |
```
|
| 94 |
|
| 95 |
-
*Effects:*
|
| 96 |
-
`get_deleter()(get())`.
|
| 97 |
-
|
| 98 |
-
`get() == p`.
|
| 99 |
|
|
|
|
| 86 |
*Returns:* `get()[i]`.
|
| 87 |
|
| 88 |
##### `unique_ptr` modifiers <a id="unique.ptr.runtime.modifiers">[[unique.ptr.runtime.modifiers]]</a>
|
| 89 |
|
| 90 |
``` cpp
|
|
|
|
| 91 |
void reset(nullptr_t p) noexcept;
|
| 92 |
```
|
| 93 |
|
| 94 |
+
*Effects:* Equivalent to `reset(pointer())`.
|
|
|
|
|
|
|
|
|
|
| 95 |
|