delete method

void delete ()

Implementation

void delete() {
  if (_freed) {
    return;
  }
  _shared._delRef();
  _freed = true;
}