[#operator_eq-019] = operator== :mrdocs: Compares two pool allocators for equality. == Synopsis Declared in `<support/allocators/pool.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class T1, class T2, std::size_t MAX_BLOCK_SIZE_BYTES, std::size_t ALIGN_BYTES> bool operator==( xref:PoolAllocator-0e.adoc[PoolAllocator<T1, MAX_BLOCK_SIZE_BYTES, ALIGN_BYTES>] const& a, xref:PoolAllocator-0e.adoc[PoolAllocator<T2, MAX_BLOCK_SIZE_BYTES, ALIGN_BYTES>] const& b) noexcept; ---- == Return Value True when both allocators share the same backing resource. == Parameters [cols="1,4"] |=== | Name| Description | *a* | First allocator to compare. | *b* | Second allocator to compare. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#