Function rawFree [src]

This function is not intended to be called except from within the implementation of an Allocator.

Prototype

pub inline fn rawFree(a: Allocator, memory: []u8, alignment: Alignment, ret_addr: usize) void

Parameters

a: Allocatormemory: []u8alignment: Alignmentret_addr: usize

Source

pub inline fn rawFree(a: Allocator, memory: []u8, alignment: Alignment, ret_addr: usize) void { return a.vtable.free(a.ptr, memory, alignment, ret_addr); }