Add the item to the start of a list
(self, item: Any)
| 129 | self._operations.append(_operation("Append", self._location, value=item)) |
| 130 | |
| 131 | def prepend(self, item: Any) -> None: |
| 132 | """Add the item to the start of a list""" |
| 133 | self._operations.append(_operation("Prepend", self._location, value=item)) |
| 134 | |
| 135 | def insert(self, index: int, item: Any) -> None: |
| 136 | """Add the item at the index of a list""" |