StdAllocator

Namespace for a static, thread-local region allocator wrapping an std.experimental.allocator.IAllocator.

Members

Properties

inRegion
bool inRegion [@property getter]

Static functions

alloc
auto alloc(Args args)

Makes a T using my_allocator, and returns a pointer to it.

alloc
auto alloc(size_t size)

Allocates size bytes from my_allocator and returns a slice to it.

enter
void enter(size_t )

Have the calling thread enter the region without changing my_allocator.

enter
void enter(IAllocator ia)

Have the calling thread enter the region, and assign a new my_allocator.

exit
void exit()

Have the calling thread exit the region.

Static variables

my_allocator
IAllocator my_allocator;

Thread-local reference to the allocator backing the region, defaulting to std.experimental.allocator.processAllocator.

Meta