Return True if tree is not empty
(self)
| 249 | return self.leaves.key_count() |
| 250 | |
| 251 | def __bool__(self) -> bool: |
| 252 | """Return True if tree is not empty""" |
| 253 | return len(self) > 0 |
| 254 | |
| 255 | def __delitem__(self, key: Any) -> None: |
| 256 | """Delete a key (dict-like API)""" |
nothing calls this directly
no outgoing calls
no test coverage detected