operator==,!=(std::scoped_allocator_adaptor)
来自cppreference.com
| 在标头 <scoped_allocator> 定义
|
||
| |
(C++11 起) | |
| |
(C++11 起) (C++20 前) |
|
比较两个有作用域分配器适配器。若满足下列条件则两个这种分配器相等:
lhs.outer_allocator() == rhs.outer_allocator(),且- 若
sizeof...(InnerAllocs) > 0,则lhs.inner_allocator() == rhs.inner_allocator()。
|
|
(C++20 起) |
参数
| lhs, rhs | - | 要比较的有作用域分配器适配器 |
返回值
1) 若
lhs 与 rhs 相等,则返回 true,否则返回 false。2) 若
lhs 与 rhs 不相等,则返回 true,否则返回 false。