stdx-allocator ~master (2019-07-16T13:47:43Z)
Dub
Repo
AlignedMallocator.deallocate
stdx
allocator
mallocator
AlignedMallocator
Calls
free
(
b.ptr
)
on Posix and
__aligned_free
(
b.ptr
)
on Windows.
bool
deallocate
(void[] b)
struct
AlignedMallocator
version(Posix)
@
system
@
nogc
nothrow static
bool
deallocate
()
(
void
[]
b
)
bool
deallocate
(void[] b)
Meta
Source
See Implementation
stdx
allocator
mallocator
AlignedMallocator
static functions
alignedAllocate
alignedReallocate
allocate
deallocate
reallocate
variables
alignment
instance
Calls free(b.ptr) on Posix and __aligned_free(b.ptr) on Windows.