(self, key: object)
| 35 | return len(self.__map) |
| 36 | |
| 37 | def __contains__(self, key: object) -> bool: |
| 38 | return key in self.__map |
| 39 | |
| 40 | def add(self, key: str) -> None: |
| 41 | # Store new key in a new link at the end of the linked list |
nothing calls this directly
no outgoing calls
no test coverage detected