fxtypemap 0.1.1

A fast type map based on internal hasher used in Firefox and Rustc.
Documentation

FxTypeMap

It's simple typemap, based on crate fxhash.

Usage

let mut map = TypeMap::new();

map.insert::<String>(String::from("hello"));

assert!(map.get::<String>().is_some());
assert!(map.contains::<String>());