Skip to content

Luro02/array-map

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.