Allocates size bytes of memory.
Deallocates a memory block.
Increases or decreases the size of a memory block.
Reallocating in place isn't supported.
Static allocator instance and initializer.
Allocates size bytes of memory.
Deallocates a memory block.
Increases or decreases the size of a memory block.
Reallocates a memory block in place if possible or returns $(D_KEYWORD false). This function cannot be used to allocate or deallocate memory, so if p is $(D_KEYWORD null) or size is 0, it should return $(D_KEYWORD false).
Wrapper for $(D_PSYMBOL malloc)/$(D_PSYMBOL realloc)/$(D_PSYMBOL free) from the C standard library.