tmp/tmphi_50cpz/{from.md → to.md}
RENAMED
|
@@ -1,30 +1,30 @@
|
|
| 1 |
#### Constructors <a id="queue.cons">[[queue.cons]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
-
explicit queue(const Container& cont);
|
| 5 |
```
|
| 6 |
|
| 7 |
*Effects:* Initializes `c` with `cont`.
|
| 8 |
|
| 9 |
``` cpp
|
| 10 |
-
explicit queue(Container&& cont);
|
| 11 |
```
|
| 12 |
|
| 13 |
*Effects:* Initializes `c` with `std::move(cont)`.
|
| 14 |
|
| 15 |
``` cpp
|
| 16 |
template<class InputIterator>
|
| 17 |
-
queue(InputIterator first, InputIterator last);
|
| 18 |
```
|
| 19 |
|
| 20 |
*Effects:* Initializes `c` with `first` as the first argument and `last`
|
| 21 |
as the second argument.
|
| 22 |
|
| 23 |
``` cpp
|
| 24 |
template<container-compatible-range<T> R>
|
| 25 |
-
queue(from_range_t, R&& rg);
|
| 26 |
```
|
| 27 |
|
| 28 |
*Effects:* Initializes `c` with
|
| 29 |
`ranges::to<Container>(std::forward<R>(rg))`.
|
| 30 |
|
|
|
|
| 1 |
#### Constructors <a id="queue.cons">[[queue.cons]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
+
constexpr explicit queue(const Container& cont);
|
| 5 |
```
|
| 6 |
|
| 7 |
*Effects:* Initializes `c` with `cont`.
|
| 8 |
|
| 9 |
``` cpp
|
| 10 |
+
constexpr explicit queue(Container&& cont);
|
| 11 |
```
|
| 12 |
|
| 13 |
*Effects:* Initializes `c` with `std::move(cont)`.
|
| 14 |
|
| 15 |
``` cpp
|
| 16 |
template<class InputIterator>
|
| 17 |
+
constexpr queue(InputIterator first, InputIterator last);
|
| 18 |
```
|
| 19 |
|
| 20 |
*Effects:* Initializes `c` with `first` as the first argument and `last`
|
| 21 |
as the second argument.
|
| 22 |
|
| 23 |
``` cpp
|
| 24 |
template<container-compatible-range<T> R>
|
| 25 |
+
constexpr queue(from_range_t, R&& rg);
|
| 26 |
```
|
| 27 |
|
| 28 |
*Effects:* Initializes `c` with
|
| 29 |
`ranges::to<Container>(std::forward<R>(rg))`.
|
| 30 |
|