tmp/tmpwm2l8wvk/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### Header `<deque>` synopsis <a id="deque.syn">[[deque.syn]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
#include <initializer_list>
|
| 5 |
+
|
| 6 |
+
namespace std {
|
| 7 |
+
// [deque], class template deque
|
| 8 |
+
template <class T, class Allocator = allocator<T>> class deque;
|
| 9 |
+
template <class T, class Allocator>
|
| 10 |
+
bool operator==(const deque<T, Allocator>& x, const deque<T, Allocator>& y);
|
| 11 |
+
template <class T, class Allocator>
|
| 12 |
+
bool operator< (const deque<T, Allocator>& x, const deque<T, Allocator>& y);
|
| 13 |
+
template <class T, class Allocator>
|
| 14 |
+
bool operator!=(const deque<T, Allocator>& x, const deque<T, Allocator>& y);
|
| 15 |
+
template <class T, class Allocator>
|
| 16 |
+
bool operator> (const deque<T, Allocator>& x, const deque<T, Allocator>& y);
|
| 17 |
+
template <class T, class Allocator>
|
| 18 |
+
bool operator>=(const deque<T, Allocator>& x, const deque<T, Allocator>& y);
|
| 19 |
+
template <class T, class Allocator>
|
| 20 |
+
bool operator<=(const deque<T, Allocator>& x, const deque<T, Allocator>& y);
|
| 21 |
+
template <class T, class Allocator>
|
| 22 |
+
void swap(deque<T, Allocator>& x, deque<T, Allocator>& y)
|
| 23 |
+
noexcept(noexcept(x.swap(y)));
|
| 24 |
+
|
| 25 |
+
namespace pmr {
|
| 26 |
+
template <class T>
|
| 27 |
+
using deque = std::deque<T, polymorphic_allocator<T>>;
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
```
|
| 31 |
+
|