filter the item out of a list on the frontend
(self, item: Any)
| 153 | self._operations.append(_operation("Extend", self._location, value=item)) |
| 154 | |
| 155 | def remove(self, item: Any) -> None: |
| 156 | """filter the item out of a list on the frontend""" |
| 157 | self._operations.append(_operation("Remove", self._location, value=item)) |
| 158 | |
| 159 | def update(self, E: Any = None, **F) -> None: |
| 160 | """Merge a dict or keyword arguments with another dictionary""" |