Remove some arbitrary ``key, value`` pair from the map and returns the ``(key, value)`` tuple.
(self)
| 1168 | raise NotImplementedError |
| 1169 | |
| 1170 | def popitem(self) -> tuple[KT, VT]: |
| 1171 | """Remove some arbitrary ``key, value`` pair from the map and returns the |
| 1172 | ``(key, value)`` tuple. |
| 1173 | """ |
| 1174 | raise NotImplementedError |
| 1175 | |
| 1176 | def clear(self) -> None: |
| 1177 | """Empty out the map entirely.""" |
no outgoing calls