tmp/tmpg64p87_2/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#### `node_handle` destructor <a id="container.node.dtor">[[container.node.dtor]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
~node_handle();
|
| 5 |
+
```
|
| 6 |
+
|
| 7 |
+
*Effects:* If `ptr_ != nullptr`, destroys the `value_type` subobject in
|
| 8 |
+
the `container_node_type` object pointed to by `ptr_` by calling
|
| 9 |
+
`ator_traits::destroy`, then deallocates `ptr_` by calling
|
| 10 |
+
`ator_traits::rebind_traits<container_node_type>::deallocate`.
|
| 11 |
+
|