Reversal of the order of items in a list
(self)
| 143 | self._operations.append(_operation("Clear", self._location)) |
| 144 | |
| 145 | def reverse(self) -> None: |
| 146 | """Reversal of the order of items in a list""" |
| 147 | self._operations.append(_operation("Reverse", self._location)) |
| 148 | |
| 149 | def extend(self, item: Union[list, tuple]) -> None: |
| 150 | """Add all the items to the end of a list""" |