Returns True if the node is at capacity
(self)
| 652 | |
| 653 | @abstractmethod |
| 654 | def is_full(self) -> bool: |
| 655 | """Returns True if the node is at capacity""" |
| 656 | pass |
| 657 | |
| 658 | @abstractmethod |
| 659 | def __len__(self) -> int: |
no outgoing calls
no test coverage detected