# fast-map
[![Docs](https://docs.rs/fast-map/badge.svg)](https://docs.rs/crate/fast-map/)
[![Crates.io](https://img.shields.io/crates/v/fast-map.svg)](https://crates.io/crates/fast-map)
A small library and custom derive to create a map-like struct that uses match expressions to `get` and `insert` values.
If you know your keys at compile-time, this library will likely be faster than `HashMap` for supported map operations.
Provides the following operations on the wrapping struct (via `derive` macros):
* `MyMap::get`, returns `Result