Prints all the elements in the store.
(self)
| 64 | self.key_reference.add(x) |
| 65 | |
| 66 | def display(self) -> None: |
| 67 | """ |
| 68 | Prints all the elements in the store. |
| 69 | """ |
| 70 | for k in self.dq_store: |
| 71 | print(k) |
| 72 | |
| 73 | def __repr__(self) -> str: |
| 74 | return f"LRUCache({self._MAX_CAPACITY}) => {list(self.dq_store)}" |
no outgoing calls
no test coverage detected