GCAllocator

Namespace for a static, thread-local region allocator wrapping the GC.

Members

Properties

inRegion
bool inRegion [@property getter]

Static functions

alloc
auto alloc(Args args)

Allocates a T onto the GC and returns a pointer or class reference to it.

alloc
void[] alloc(size_t size)

Allocates the size bytes from the GC and returns a slice to it.

enter
void enter(size_t )

Have the calling thread enter the region.

exit
void exit()

Have the calling thread exit the region.

Meta