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