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

Method is_full

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

Source from the content-addressed store, hash-verified

689 return True
690
691 def is_full(self) -> bool:
692 return len(self.keys) >= self.capacity
693
694 def __len__(self) -> int:
695 return len(self.keys)

Callers 2

test_leaf_node_fullMethod · 0.95

Calls

no outgoing calls

Tested by 2

test_leaf_node_fullMethod · 0.76