aurorafw ~master (2020-10-29T20:10:48Z)
Dub
Repo
Allocator
aurorafw
core
memory
allocator
Undocumented in source.
interface
Allocator {
void
[]
allocate
(size_t size);
bool
deallocate
(void[] p);
bool
reallocate
(void[] p, size_t s);
immutable
(
uint
)
alignment
[@property getter];
}
Members
Functions
allocate
void
[]
allocate
(size_t size)
Undocumented in source.
deallocate
bool
deallocate
(void[] p)
Undocumented in source.
reallocate
bool
reallocate
(void[] p, size_t s)
Undocumented in source.
Properties
alignment
immutable
(
uint
)
alignment
[@property getter]
Undocumented in source.
Meta
Source
See Implementation
aurorafw
core
memory
allocator
interfaces
Allocator