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

Method is_leaf

python/bplustree/bplus_tree.py:688–689  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

686 self.next: Optional["LeafNode"] = None # Link to next leaf
687
688 def is_leaf(self) -> bool:
689 return True
690
691 def is_full(self) -> bool:
692 return len(self.keys) >= self.capacity

Callers 1

Calls

no outgoing calls

Tested by 1