free static method
Frees the allocated memory for a DynamicAlignedArray
instance.
ptr
: The pointer to theDynamicAlignedArray
instance to free.
Implementation
static void free(Pointer<DynamicAlignedArray> ptr) {
ptr.ref.dispose();
calloc.free(ptr);
}