Return the number of items in the map.
(self)
| 603 | return ItemsView(self) |
| 604 | |
| 605 | def __len__(self) -> int: |
| 606 | """Return the number of items in the map.""" |
| 607 | return _ffi_api.MapSize(self) |
| 608 | |
| 609 | def __bool__(self) -> bool: |
| 610 | """Return True if the map is non-empty.""" |
nothing calls this directly
no outgoing calls
no test coverage detected