(self, capacity: int = 128)
| 229 | """B+ Tree with single array node optimization.""" |
| 230 | |
| 231 | def __init__(self, capacity: int = 128): |
| 232 | self.capacity = capacity |
| 233 | self.root = OptimizedLeafNode(capacity) |
| 234 | self.leaves = self.root |
| 235 | |
| 236 | def __getitem__(self, key) -> Any: |
| 237 | """Lookup with optimized nodes.""" |
nothing calls this directly
no test coverage detected