delete method

bool delete(
  1. NSKey key
)

Remove a committed entity by key. Returns false if not found.

Implementation

bool delete(NSKey key) {
  _checkOpen();
  return nosqueel.ns_database_delete(_db, key.handle);
}