tmp/tmp_99yt3fy/{from.md → to.md}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
-
###
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class OuterA1, class OuterA2, class... InnerAllocs>
|
| 5 |
bool operator==(const scoped_allocator_adaptor<OuterA1, InnerAllocs...>& a,
|
| 6 |
const scoped_allocator_adaptor<OuterA2, InnerAllocs...>& b) noexcept;
|
|
@@ -16,13 +16,5 @@ otherwise
|
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
a.outer_allocator() == b.outer_allocator() && a.inner_allocator() == b.inner_allocator()
|
| 19 |
```
|
| 20 |
|
| 21 |
-
``` cpp
|
| 22 |
-
template <class OuterA1, class OuterA2, class... InnerAllocs>
|
| 23 |
-
bool operator!=(const scoped_allocator_adaptor<OuterA1, InnerAllocs...>& a,
|
| 24 |
-
const scoped_allocator_adaptor<OuterA2, InnerAllocs...>& b) noexcept;
|
| 25 |
-
```
|
| 26 |
-
|
| 27 |
-
*Returns:* `!(a == b)`.
|
| 28 |
-
|
|
|
|
| 1 |
+
### Operators <a id="scoped.adaptor.operators">[[scoped.adaptor.operators]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class OuterA1, class OuterA2, class... InnerAllocs>
|
| 5 |
bool operator==(const scoped_allocator_adaptor<OuterA1, InnerAllocs...>& a,
|
| 6 |
const scoped_allocator_adaptor<OuterA2, InnerAllocs...>& b) noexcept;
|
|
|
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
a.outer_allocator() == b.outer_allocator() && a.inner_allocator() == b.inner_allocator()
|
| 19 |
```
|
| 20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|