MCPcopy Create free account
hub / github.com/NodeDB-Lab/nodedb / is_deleted

Method is_deleted

nodedb-columnar/src/delete_bitmap.rs:46–48  ·  view source on GitHub ↗

Check whether a row is deleted.

(&self, row_idx: u32)

Source from the content-addressed store, hash-verified

44
45 /// Check whether a row is deleted.
46 pub fn is_deleted(&self, row_idx: u32) -> bool {
47 self.inner.contains(row_idx)
48 }
49
50 /// Number of deleted rows.
51 pub fn deleted_count(&self) -> u64 {

Callers 5

compact_segmentFunction · 0.45
compact_segmentsFunction · 0.45
scan_memtable_rowsMethod · 0.45
get_memtable_rowMethod · 0.45

Calls 1

containsMethod · 0.45

Tested by

no test coverage detected