Remove all items in a list
(self)
| 139 | ) |
| 140 | |
| 141 | def clear(self) -> None: |
| 142 | """Remove all items in a list""" |
| 143 | self._operations.append(_operation("Clear", self._location)) |
| 144 | |
| 145 | def reverse(self) -> None: |
| 146 | """Reversal of the order of items in a list""" |