std::experimental::pmr::memory_resource::is_equal
From cppreference.com
< cpp | experimental | memory resource
| bool is_equal( const memory_resource& other ) const noexcept; |
(Library Fundamentals TS) | |
*this と other を比較します。2つのmemory_resourceが等しいとみなされるのは、一方のmemory_resourceから割り当てられたメモリが他方から解放でき、またその逆も可能な場合のみです。
return do_is_equal(other); と同等です。
[編集] 関連項目
| [virtual] |
別のmemory_resourceとの等価性を比較する(virtual protected member function) |