ScopedAllocator's destructor releases all memory allocated during its lifetime.
ScopedAllocator is not copyable.
Allocates memory. For management it actually allocates extra memory from the parent.
Deallocates b.
Deallocates all memory allocated.
Returns Ternary.yes if this allocator is not responsible for any memory, Ternary.no otherwise. (Never returns Ternary.unknown.)
Forwards to parent.expand(b, delta).
Forwards to parent.goodAllocSize (which accounts for the management overhead).
Forwards to parent.owns(b).
Reallocates b to new size s.
Alignment offered
If ParentAllocator is stateful, parent is a property giving access to an AffixAllocator!ParentAllocator. Otherwise, parent is an alias for AffixAllocator!ParentAllocator.instance.
ScopedAllocator delegates all allocation requests to ParentAllocator. When destroyed, the ScopedAllocator object automatically calls deallocate for all memory allocated through its lifetime. (The deallocateAll function is also implemented with the same semantics.)
deallocate is also supported, which is where most implementation effort and overhead of ScopedAllocator go. If deallocate is not needed, a simpler design combining AllocatorList with Region is recommended.