halfbrown
halfbrown copied to clipboard
Multi backend HashMap for higher performance on different key space sizes
Maybe i'm missing something here but since Rust 1.36, `hashbrown` is now the HashMap implementation for the Rust standard library so is the dependency needed? And then you can use...
### Subject of the feature It would be nice to have a `halfbrown::HashSet` that works well for a small number of keys. It could be implemented as: ``` struct HashSet(halfbrown::HashMap);...
The `HalfBrown` map covers the essentials of `HashMap` but not everything quite a few things are missing.
`arraybackend` is a nice feature, but doesn't seem to be mentioned in readme, docs or `Cargo.toml` itself. It does about what one expects and is not hard to find in...