- alignedAlloc
T[] alignedAlloc(size_t count, uint alignment)
Allocate array using strict memory alignment.
- alignedFree
void alignedFree(void[] ptr)
Frees memory allocated using alignedAlloc function.
- alignedRealloc
bool alignedRealloc(void[] ptr, size_t newSize)
Allocate array using strict memory alignment.
- allocArray
T[] allocArray(size_t length)
Undocumented in source. Be warned that the author may not have intended to support it.
- allocArray
T[] allocArray(size_t length)
Undocumented in source. Be warned that the author may not have intended to support it.
- freeArray
void freeArray(void[] ptr)
Undocumented in source. Be warned that the author may not have intended to support it.
- freeArray
void freeArray(void[] ptr)
Undocumented in source. Be warned that the author may not have intended to support it.
Module introduces memory management utilities to help manage memory for SIMD compatible arrays, with or without use of GC.