auto_hash_map/
lib.rs

1pub mod map;
2pub mod set;
3
4pub use map::AutoMap;
5pub use set::AutoSet;
6
7// Values based on data from https://github.com/yegor256/micromap#benchmark
8
9/// Maximum size of list variant. Must convert to HashMap when bigger.
10pub const MAX_LIST_SIZE: usize = 32;
11/// Minimum size of HashMap variant. Must convert to List when smaller.
12pub const MIN_HASH_SIZE: usize = 16;