Interface AllocatorManager.IAllocator
An allocator with a tryable allocate/free/realloc function pointer.
Syntax
public interface IAllocator
Properties
AllocatedBytes
Number of currently allocated bytes for this allocator.
Declaration
long AllocatedBytes { get; }
Property Value
BudgetInBytes
Upper limit on how many bytes this allocator is allowed to allocate.
Declaration
long BudgetInBytes { get; }
Property Value
Function
Declaration
AllocatorManager.TryFunction Function { get; }
Property Value
Methods
Try(ref AllocatorManager.Block)
Declaration
int Try(ref AllocatorManager.Block block)
Parameters
Returns