free function

void free(
  1. Pointer<NativeType> pointer
)

Implementation

void free(Pointer pointer) {
  malloc.free(pointer);
}