Remove all items from sorted dict. Runtime complexity: `O(n)`
(self)
| 219 | |
| 220 | |
| 221 | def clear(self): |
| 222 | |
| 223 | """Remove all items from sorted dict. |
| 224 | |
| 225 | Runtime complexity: `O(n)` |
| 226 | |
| 227 | """ |
| 228 | dict.clear(self) |
| 229 | self._list_clear() |
| 230 | |
| 231 | |
| 232 | def __delitem__(self, key): |
no outgoing calls