GCallocator

Allocator based on D's built-in garbage collector

Members

Functions

allocate
void[] allocate(size_t size)
Undocumented in source. Be warned that the author may not have intended to support it.
deallocate
bool deallocate(void[] p)
Undocumented in source. Be warned that the author may not have intended to support it.
reallocate
bool reallocate(void[] p, size_t size)
Undocumented in source. Be warned that the author may not have intended to support it.

Properties

alignment
immutable(uint) alignment [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
instance
GCallocator instance [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.

Inherited Members

From Allocator

allocate
void[] allocate(size_t size)

Allocates size bytes of memory.

deallocate
bool deallocate(void[] p)

Deallocates a memory block.

reallocate
bool reallocate(void[] p, size_t size)

Increases or decreases the size of a memory block.

alignment
immutable(uint) alignment [@property getter]

Meta