(self)
| 27 | self.next: Optional["OptimizedLeafNode"] = None |
| 28 | |
| 29 | def is_leaf(self) -> bool: |
| 30 | return True |
| 31 | |
| 32 | def find_position(self, key) -> int: |
| 33 | """Binary search using only the keys portion of data array.""" |
no outgoing calls
no test coverage detected