Whether the reallocation was successful.
void[] p; Mallocator.instance.reallocate(p, 20); assert(p.length == 20); Mallocator.instance.reallocate(p, 30); assert(p.length == 30); Mallocator.instance.reallocate(p, 10); assert(p.length == 10); Mallocator.instance.reallocate(p, 0); assert(p is null);
Increases or decreases the size of a memory block.