Get the element matching *key* from the BTree, or return ``None`` if it does not exist.
(self, key: KT)
| 686 | return oelt |
| 687 | |
| 688 | def get_element(self, key: KT) -> ET | None: |
| 689 | """Get the element matching *key* from the BTree, or return ``None`` if it |
| 690 | does not exist. |
| 691 | """ |
| 692 | return self.root.get(key) |
| 693 | |
| 694 | def _delete(self, key: KT, exact: ET | None) -> ET | None: |
| 695 | self._check_mutable_and_park() |