Function rawResize [src]
This function is not intended to be called except from within the
implementation of an Allocator.
Prototype
pub inline fn rawResize(a: Allocator, memory: []u8, alignment: Alignment, new_len: usize, ret_addr: usize) bool
Parameters
a: Allocator
memory: []u8
alignment: Alignment
new_len: usize
ret_addr: usize
Source
pub inline fn rawResize(a: Allocator, memory: []u8, alignment: Alignment, new_len: usize, ret_addr: usize) bool {
return a.vtable.resize(a.ptr, memory, alignment, new_len, ret_addr);
}