Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 912 Bytes

readme.md

File metadata and controls

18 lines (12 loc) · 912 Bytes

array-map

ci Code Coverage

Latest Documentation

This crate provides an array based hashmap (ArrayMap), which works in a no-std environment and can be used if an upper bound for the number of keys in the map is known at compile-time.

The crate requires the nightly compiler to be used, which is why it has not been published on crates.io yet. See #2.

Credits

This project has been heavily inspired by https://github.com/rust-lang/hashbrown and some of the initial documentation and tests have been copied from this project.