callocFree method

bool callocFree()

Implementation

bool callocFree() {
  bool result = false;
  if (this != nullptr) {
    ffi.calloc.free(this);
    result = true;
  }
  return result;
}