Crate uluru [−] [src]
A simple least-recently-used (LRU) cache.
Structs
| CacheIndex |
An opaque token used as an index into an LRUCache. |
| Entry |
An entry in an LRUCache. |
| LRUCache |
A LRU cache using a statically-sized array for storage. |
| LRUCacheIterator |
Immutable iterator over values in an LRUCache, from most-recently-used to least-recently-used. |
| LRUCacheMutIterator |
Mutable iterator over values in an LRUCache, from most-recently-used to least-recently-used. |