Name Description Size
lib.rs A simple, fast, least-recently-used (LRU) cache. [`LRUCache`] uses a fixed-capacity array for storage. It provides `O(1)` insertion, and `O(n)` lookup. It does not require an allocator and can be used in `no_std` crates. See the [`LRUCache`](LRUCache) docs for details. 10290
tests.rs 4529