tmp/tmp1gfb47rw/{from.md → to.md}
RENAMED
|
@@ -1,12 +1,10 @@
|
|
| 1 |
#### `priority_queue` constructors <a id="priqueue.cons">[[priqueue.cons]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
-
priority_queue(const Compare& x,
|
| 5 |
-
|
| 6 |
-
explicit priority_queue(const Compare& x = Compare(),
|
| 7 |
-
Container&& y = Container());
|
| 8 |
```
|
| 9 |
|
| 10 |
*Requires:* `x` shall define a strict weak ordering ([[alg.sorting]]).
|
| 11 |
|
| 12 |
*Effects:* Initializes `comp` with `x` and `c` with `y` (copy
|
|
|
|
| 1 |
#### `priority_queue` constructors <a id="priqueue.cons">[[priqueue.cons]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
+
priority_queue(const Compare& x, const Container& y);
|
| 5 |
+
explicit priority_queue(const Compare& x = Compare(), Container&& y = Container());
|
|
|
|
|
|
|
| 6 |
```
|
| 7 |
|
| 8 |
*Requires:* `x` shall define a strict weak ordering ([[alg.sorting]]).
|
| 9 |
|
| 10 |
*Effects:* Initializes `comp` with `x` and `c` with `y` (copy
|