Find the leaf node that contains or would contain the given key
(self, key: Any)
| 971 | return self.split() |
| 972 | |
| 973 | def find_leaf_for_key(self, key: Any) -> "LeafNode": |
| 974 | """Find the leaf node that contains or would contain the given key""" |
| 975 | child = self.get_child(key) |
| 976 | return child.find_leaf_for_key(key) |
nothing calls this directly
no test coverage detected