std::experimental::pmr::memory_resource::is_equal

来自cppreference.com
 
 
 
 
 
bool is_equal( const memory_resource& other ) const noexcept;
(库基础 TS)

比较 *thisother 的相等性。当且仅当从一个 memory_resource 分配的内存可以由另一个解分配且反之亦然时,两个 memory_resource 比较相等。

等价于 return do_is_equal(other);

参阅

与另一 memory_resource 比较相等性
(虚受保护成员函数)