ORIGINAL
Loading...
Searching...
No Matches
original::allocators Class Referencefinal

Utility class providing static memory allocation/de-allocation functions. More...

#include <allocator.h>

Collaboration diagram for original::allocators:
Collaboration graph

Static Public Member Functions

template<typename TYPE>
static TYPE * malloc (u_integer size)
 Allocates raw memory using global operator new.
 
template<typename TYPE>
static void free (TYPE *ptr)
 Deallocates memory using global operator delete.
 

Detailed Description

Utility class providing static memory allocation/de-allocation functions.

Contains static methods for raw memory operations that serve as the foundation for other allocator implementations in this namespace.

Member Function Documentation

◆ free()

template<typename TYPE>
void original::allocators::free ( TYPE * ptr)
static

Deallocates memory using global operator delete.

Template Parameters
TYPEType of objects being freed (auto deduced)
Parameters
ptrPointer to memory to free
See also
malloc

◆ malloc()

template<typename TYPE>
TYPE * original::allocators::malloc ( u_integer size)
static

Allocates raw memory using global operator new.

Template Parameters
TYPEType of objects to allocate
Parameters
sizeNumber of elements to allocate
Returns
Pointer to allocated memory
Exceptions
allocateErrorWhen memory allocation fails
Note
Returns nullptr if size is 0
See also
free

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