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