uluru

Crates.iouluru
lib.rsuluru
version3.1.0
sourcesrc
created_at2017-11-15 14:57:55.198404
updated_at2024-04-08 03:27:59.429177
descriptionA simple, fast, LRU cache implementation
homepage
repositoryhttps://github.com/servo/uluru
max_upload_size
id39441
size31,733
cargo publish (github:servo:cargo-publish)

documentation

README

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. It is implemented in 100% safe Rust.

Commit count: 55

cargo fmt