std::pmr::operator==, std::pmr::operator!=

来自cppreference.com
 
 
动态内存管理
未初始化存储
(C++17)
垃圾收集支持
杂项
(C++20)
(C++11)
(C++11)
C 库
低层内存管理
 
 
template< class T1, class T2 >

bool operator==( const std::pmr::polymorphic_allocator<T1>& lhs,

                 const std::pmr::polymorphic_allocator<T2>& rhs ) noexcept;
template< class T1, class T2 >

bool operator!=( const std::pmr::polymorphic_allocator<T1>& lhs,

                 const std::pmr::polymorphic_allocator<T2>& rhs ) noexcept;

比较二个 polymorphic_allocator 。若二个 polymorphic_allocator 的底层 memory_resource 比较相等,则它们比较相等。

1) 返回 *lhs.resource() == *rhs.resource()
2) 返回 !(lhs == rhs)

参数

lhs, rhs - 要比较的 polymorphic_allocator

返回值

1) *lhs.resource() == *rhs.resource()
2) !(lhs == rhs)