| 27 | explicit LRUCache(size_type capacity) : _capacity(capacity) { _map.reserve(capacity); } |
| 28 | |
| 29 | size_type size() const { return _map.size(); } |
| 30 | size_type capacity() const { return _capacity; } |
| 31 | bool empty() const { return _map.empty(); } |
| 32 |
no outgoing calls
no test coverage detected