Interface for other memory allocator implementations.
More...
#include <allocator.h>
|
using | propagate_on_container_copy_assignment = std::false_type |
| No propagation on copy.
|
|
using | propagate_on_container_move_assignment = std::false_type |
| No propagation on move.
|
|
using | propagate_on_container_swap = std::false_type |
| No propagation on swap.
|
|
using | propagate_on_container_merge = std::false_type |
| No propagation on merge.
|
|
template<typename O_TYPE> |
using | rebind_alloc = DERIVED<O_TYPE> |
| Rebinds allocator to different type.
|
|
|
constexpr | allocatorBase () |
| Constructs a new allocatorBase instance.
|
|
virtual TYPE * | allocate (u_integer size)=0 |
| Allocates raw memory.
|
|
virtual void | deallocate (TYPE *ptr, u_integer size)=0 |
| Deallocates memory.
|
|
template<typename O_TYPE, typename... Args> |
void | construct (O_TYPE *o_ptr, Args &&... args) |
| Constructs an object in allocated memory.
|
|
virtual | ~allocatorBase ()=0 |
| Virtual destructor.
|
|
|
template<typename O_TYPE> |
static void | destroy (O_TYPE *o_ptr) |
| Destroys an object without deallocating.
|
|
template<typename TYPE, template< typename > typename DERIVED>
class original::allocatorBase< TYPE, DERIVED >
Interface for other memory allocator implementations.
- Template Parameters
-
TYPE | The type of objects to allocate |
DERIVED | CRTP template parameter for derived allocators |
Provides common interface and utilities for memory management:
- Type-safe allocation/de-allocation
- Object construction/destruction
- Rebinding support for container needs
- Propagation control for container operations
Propagation traits:
◆ rebind_alloc
template<typename TYPE, template< typename > typename DERIVED>
template<typename O_TYPE>
Rebinds allocator to different type.
- Template Parameters
-
O_TYPE | New type to allocate |
◆ allocatorBase()
template<typename TYPE, template< typename > class DERIVED>
Constructs a new allocatorBase instance.
Performs compile-time validation of the allocated type:
- Ensures TYPE is not void
- Ensures TYPE is a complete type (size > 0)
◆ allocate()
template<typename TYPE, template< typename > typename DERIVED>
◆ construct()
template<typename TYPE, template< typename > typename DERIVED>
template<typename O_TYPE, typename... Args>
Constructs an object in allocated memory.
- Template Parameters
-
O_TYPE | Type of object to construct |
Args | Constructor argument types |
- Parameters
-
o_ptr | Pointer to allocated memory |
args | Arguments to forward to constructor |
◆ deallocate()
template<typename TYPE, template< typename > typename DERIVED>
◆ destroy()
template<typename TYPE, template< typename > typename DERIVED>
template<typename O_TYPE>
Destroys an object without deallocating.
- Template Parameters
-
O_TYPE | Type of object to destroy |
- Parameters
-
o_ptr | Pointer to object to destroy |
The documentation for this class was generated from the following file: