tmp/tmpvxd9hi72/{from.md → to.md}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
-
####
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
void push(const value_type& x);
|
| 5 |
```
|
| 6 |
|
|
@@ -21,11 +21,11 @@ void push(value_type&& x);
|
|
| 21 |
c.push_back(std::move(x));
|
| 22 |
push_heap(c.begin(), c.end(), comp);
|
| 23 |
```
|
| 24 |
|
| 25 |
``` cpp
|
| 26 |
-
template
|
| 27 |
```
|
| 28 |
|
| 29 |
*Effects:* As if by:
|
| 30 |
|
| 31 |
``` cpp
|
|
|
|
| 1 |
+
#### Members <a id="priqueue.members">[[priqueue.members]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
void push(const value_type& x);
|
| 5 |
```
|
| 6 |
|
|
|
|
| 21 |
c.push_back(std::move(x));
|
| 22 |
push_heap(c.begin(), c.end(), comp);
|
| 23 |
```
|
| 24 |
|
| 25 |
``` cpp
|
| 26 |
+
template<class... Args> void emplace(Args&&... args);
|
| 27 |
```
|
| 28 |
|
| 29 |
*Effects:* As if by:
|
| 30 |
|
| 31 |
``` cpp
|