Function allocator [src]
Prototype
pub fn allocator(self: *ArenaAllocator) Allocator
Parameters
self: *ArenaAllocator
Source
pub fn allocator(self: *ArenaAllocator) Allocator {
return .{
.ptr = self,
.vtable = &.{
.alloc = alloc,
.resize = resize,
.remap = remap,
.free = free,
},
};
}