(self)
| 32 | self |= iterable # type: ignore |
| 33 | |
| 34 | def __len__(self) -> int: |
| 35 | return len(self.__map) |
| 36 | |
| 37 | def __contains__(self, key: object) -> bool: |
| 38 | return key in self.__map |
nothing calls this directly
no outgoing calls
no test coverage detected