QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
quickcpplib::_xxx::pmr Namespace Reference

Classes

class  memory_resource
 memory_resource emulation More...
 
class  monotonic_buffer_resource
 A just barely good enough C++ 14 emulation of monotonic_buffer_resource. More...
 
class  polymorphic_allocator
 The world's worst C++ 14 emulation of polymorphic_allocator, which maps onto std::allocator. More...
 

Functions

bool operator== (const memory_resource &a, const memory_resource &b) noexcept
 
bool operator!= (const memory_resource &a, const memory_resource &b) noexcept
 
template<class T1 , class T2 >
bool operator== (const polymorphic_allocator< T1 > &a, const polymorphic_allocator< T2 > &b) noexcept
 
template<class T1 , class T2 >
bool operator!= (const polymorphic_allocator< T1 > &a, const polymorphic_allocator< T2 > &b) noexcept
 

Function Documentation

◆ operator==() [1/2]

bool quickcpplib::_xxx::pmr::operator== ( const memory_resource a,
const memory_resource b 
)
inlinenoexcept
86 {
87 return a.do_is_equal(b);
88 }

◆ operator!=() [1/2]

bool quickcpplib::_xxx::pmr::operator!= ( const memory_resource a,
const memory_resource b 
)
inlinenoexcept
90 {
91 return !a.do_is_equal(b);
92 }

◆ operator==() [2/2]

template<class T1 , class T2 >
bool quickcpplib::_xxx::pmr::operator== ( const polymorphic_allocator< T1 > &  a,
const polymorphic_allocator< T2 > &  b 
)
inlinenoexcept
178 {
179 return *a.resource() == *b.resource();
180 }
memory_resource * resource() const
Definition memory_resource.hpp:166

◆ operator!=() [2/2]

template<class T1 , class T2 >
bool quickcpplib::_xxx::pmr::operator!= ( const polymorphic_allocator< T1 > &  a,
const polymorphic_allocator< T2 > &  b 
)
inlinenoexcept
183 {
184 return *a.resource() != *b.resource();
185 }