Allocator

Undocumented in source.

Members

Functions

alloc
void[] alloc(size_t size)
Undocumented in source. Be warned that the author may not have intended to support it.
alloc_array
T[] alloc_array(size_t count)
Undocumented in source. Be warned that the author may not have intended to support it.
allocate
void* allocate(size_t size)
Undocumented in source. Be warned that the author may not have intended to support it.
create
T* create(Args args)
Undocumented in source. Be warned that the author may not have intended to support it.
free
void free(void* ptr)
Undocumented in source. Be warned that the author may not have intended to support it.
ptr
Allocator* ptr()
Undocumented in source. Be warned that the author may not have intended to support it.
reallocate
void* reallocate(void* ptr, size_t size)
Undocumented in source. Be warned that the author may not have intended to support it.
reallocate_array
T[] reallocate_array(T* ptr, size_t count)
Undocumented in source. Be warned that the author may not have intended to support it.
safe_delete
void safe_delete(T* ptr)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

vt_allocate
void* function(Allocator*, size_t) vt_allocate;
Undocumented in source.
vt_free
void function(Allocator*, void*) vt_free;
Undocumented in source.
vt_reallocate
void* function(Allocator*, void*, size_t) vt_reallocate;
Undocumented in source.

Meta