Update an existing item in the memory.
(self, key: str, value: object)
| 36 | |
| 37 | @abstractmethod |
| 38 | def update(self, key: str, value: object): |
| 39 | """Update an existing item in the memory.""" |
| 40 | |
| 41 | @abstractmethod |
| 42 | def delete(self, key: str, index: int = -1): |
no outgoing calls
no test coverage detected