MCPcopy Create free account
hub / github.com/KentBeck/BPlusTree3 / is_empty

Method is_empty

rust/src/node.rs:418–420  ·  view source on GitHub ↗

Returns true if this leaf node is empty.

(&self)

Source from the content-addressed store, hash-verified

416
417 /// Returns true if this leaf node is empty.
418 pub fn is_empty(&self) -> bool {
419 self.keys.is_empty()
420 }
421
422 /// Returns true if this leaf node is at capacity.
423 pub fn is_full(&self) -> bool {

Calls

no outgoing calls