зеркало из https://github.com/mozilla/gecko-dev.git
b93bf873ba | ||
---|---|---|
.. | ||
.cargo-checksum.json | ||
Cargo.toml | ||
LICENSE | ||
README.md | ||
lib.rs | ||
tests.rs |
README.md
uluru
A simple, fast, least-recently-used (LRU) cache implementation used for Servo's style system.
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.