free method

void free()

Implementation

void free() {
  _refCount--;
  if (_refCount < 0) destroy();
}