Return True if the map is non-empty.
(self)
| 607 | return _ffi_api.MapSize(self) |
| 608 | |
| 609 | def __bool__(self) -> bool: |
| 610 | """Return True if the map is non-empty.""" |
| 611 | return len(self) > 0 |
| 612 | |
| 613 | def __iter__(self) -> Iterator[K]: |
| 614 | """Iterate over the map's keys.""" |
nothing calls this directly
no outgoing calls
no test coverage detected