gecko-dev/third_party/rust/uluru
Nathan Froyd b93bf873ba Bug 1502964 - part 2 - update winapi to froydnj/winapi-rs#aarch64; r=ted.mielczarek 2018-11-02 10:56:08 -04:00
..
.cargo-checksum.json Bug 1502964 - part 2 - update winapi to froydnj/winapi-rs#aarch64; r=ted.mielczarek 2018-11-02 10:56:08 -04:00
Cargo.toml Bug 1493435 - Upgrade to uluru 0.3. r=nox,emilio 2018-09-23 13:52:36 +02:00
LICENSE
README.md Bug 1493435 - Upgrade to uluru 0.3. r=nox,emilio 2018-09-23 13:52:36 +02:00
lib.rs Bug 1493435 - Upgrade to uluru 0.3. r=nox,emilio 2018-09-23 13:52:36 +02:00
tests.rs Bug 1493435 - Upgrade to uluru 0.3. r=nox,emilio 2018-09-23 13:52:36 +02:00

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.