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::polymorphic_allocator< T > Class Template Reference

The world's worst C++ 14 emulation of polymorphic_allocator, which maps onto std::allocator. More...

#include "memory_resource.hpp"

Public Types

using value_type = T
 

Public Member Functions

 polymorphic_allocator ()=default
 
 polymorphic_allocator (memory_resource *r)
 
 polymorphic_allocator (const polymorphic_allocator &o)
 
template<class U >
 polymorphic_allocator (const polymorphic_allocator< U > &o) noexcept
 
polymorphic_allocatoroperator= (const polymorphic_allocator &)=delete
 
memory_resourceresource () const
 
QUICKCPPLIB_NODISCARD T * allocate (size_t n)
 
void deallocate (T *p, size_t n)
 
template<class U , class... Args>
void construct (U *p, Args &&...args)
 
template<class U >
void destroy (U *p)
 

Friends

template<class U >
class polymorphic_allocator
 

Detailed Description

template<class T>
class quickcpplib::_xxx::pmr::polymorphic_allocator< T >

The world's worst C++ 14 emulation of polymorphic_allocator, which maps onto std::allocator.

Member Typedef Documentation

◆ value_type

template<class T >
using quickcpplib::_xxx::pmr::polymorphic_allocator< T >::value_type = T

Constructor & Destructor Documentation

◆ polymorphic_allocator() [1/4]

template<class T >
quickcpplib::_xxx::pmr::polymorphic_allocator< T >::polymorphic_allocator ( )
default

◆ polymorphic_allocator() [2/4]

template<class T >
quickcpplib::_xxx::pmr::polymorphic_allocator< T >::polymorphic_allocator ( memory_resource r)
inline
152 : _r(r)
153 {
154 }

◆ polymorphic_allocator() [3/4]

template<class T >
quickcpplib::_xxx::pmr::polymorphic_allocator< T >::polymorphic_allocator ( const polymorphic_allocator< T > &  o)
inline
156 : _r(o._r)
157 {
158 }

◆ polymorphic_allocator() [4/4]

template<class T >
template<class U >
quickcpplib::_xxx::pmr::polymorphic_allocator< T >::polymorphic_allocator ( const polymorphic_allocator< U > &  o)
inlinenoexcept
161 : _r(o._r)
162 {
163 }

Member Function Documentation

◆ operator=()

template<class T >
polymorphic_allocator & quickcpplib::_xxx::pmr::polymorphic_allocator< T >::operator= ( const polymorphic_allocator< T > &  )
delete

◆ resource()

template<class T >
memory_resource * quickcpplib::_xxx::pmr::polymorphic_allocator< T >::resource ( ) const
inline
166{ return _r; }

◆ allocate()

template<class T >
QUICKCPPLIB_NODISCARD T * quickcpplib::_xxx::pmr::polymorphic_allocator< T >::allocate ( size_t  n)
inline
169 {
170 return static_cast<T *>(resource()->allocate(n * sizeof(T), alignof(T)));
171 }
QUICKCPPLIB_NODISCARD void * allocate(size_t bytes, size_t alignment=alignof(std::max_align_t))
Definition memory_resource.hpp:76
memory_resource * resource() const
Definition memory_resource.hpp:166

◆ deallocate()

template<class T >
void quickcpplib::_xxx::pmr::polymorphic_allocator< T >::deallocate ( T *  p,
size_t  n 
)
inline
172{ resource()->deallocate(p, n * sizeof(T), alignof(T)); }
void deallocate(void *p, size_t bytes, size_t alignment=alignof(std::max_align_t))
Definition memory_resource.hpp:80

◆ construct()

template<class T >
template<class U , class... Args>
void quickcpplib::_xxx::pmr::polymorphic_allocator< T >::construct ( U *  p,
Args &&...  args 
)
inline
173{ new(p) U(static_cast<Args &&>(args)...); }

◆ destroy()

template<class T >
template<class U >
void quickcpplib::_xxx::pmr::polymorphic_allocator< T >::destroy ( U *  p)
inline
174{ p->~U(); }

Friends And Related Symbol Documentation

◆ polymorphic_allocator

template<class T >
template<class U >
friend class polymorphic_allocator
friend

The documentation for this class was generated from the following file: