free<T extends Struct> static method
Frees memory allocated for a struct.
pointer
: The pointer to the allocated memory.
Implementation
static void free<T extends Struct>(Pointer<T> pointer) {
calloc.free(pointer);
}