Find the leaf node that contains or would contain the given key
(self, _key: Any)
| 810 | return new_leaf, new_leaf.keys[0] |
| 811 | |
| 812 | def find_leaf_for_key(self, _key: Any) -> "LeafNode": |
| 813 | """Find the leaf node that contains or would contain the given key""" |
| 814 | return self # Leaf nodes return themselves |
| 815 | |
| 816 | def key_count(self) -> int: |
| 817 | """Count all keys in this leaf and all following leaves""" |
no outgoing calls
no test coverage detected