Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/KentBeck/BPlusTree3
/ is_full
Method
is_full
python/bplustree/bplus_tree.py:846–847 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
844
return
False
845
846
def
is_full(self) -> bool:
847
return
len(self.keys) >= self.capacity
848
849
def
__len__(self) -> int:
850
return
len(self.keys)
Callers
2
test_branch_node_creation
Method · 0.95
insert_child_and_split_if_needed
Method · 0.95
Calls
no outgoing calls
Tested by
1
test_branch_node_creation
Method · 0.76