Deallocates a memory block.
A pointer to the memory block to be freed.
Whether the deallocation was successful.
void[] p; assert(Mallocator.instance.deallocate(p)); p = Mallocator.instance.allocate(10); assert(Mallocator.instance.deallocate(p));
See Implementation
Deallocates a memory block.