|
Aleph-w 3.0
A C++ Library for Data Structures and Algorithms
|
Aleph-w memory allocation helpers and instrumentation hooks. More...
Go to the source code of this file.
Namespaces | |
| namespace | Aleph |
| Main namespace for Aleph-w library functions. | |
Functions | |
| void * | Aleph::allocate (const std::size_t size) |
Allocate size bytes using the C heap. | |
| void * | Aleph::allocate_zeroed (const std::size_t size) |
Allocate size zero-initialized bytes. | |
| void | Aleph::deallocate (void *ptr) noexcept |
| Release memory previously obtained through Aleph allocation helpers. | |
Aleph-w memory allocation helpers and instrumentation hooks.
This header centralizes Aleph's memory allocation conventions.
<cstddef> and <new>, enabling future expansion into custom allocators.Definition in file ahMem.H.