clear method

bool clear()

Implementation

bool clear() {
  if (_closed) {
    throw const MutationClosedException();
  }
  bool updated = false;
  updated |= _updateData(null);
  updated |= _updateInitialized();
  updated |= _updateError(null);
  return updated;
}