Returns True if this is a leaf node
(self)
| 647 | |
| 648 | @abstractmethod |
| 649 | def is_leaf(self) -> bool: |
| 650 | """Returns True if this is a leaf node""" |
| 651 | pass |
| 652 | |
| 653 | @abstractmethod |
| 654 | def is_full(self) -> bool: |
no outgoing calls
no test coverage detected