pub type MapM<K, V> = Map<K, V, DEFAULT_SIZE>;
Map using the default chunk size, a good balance of update and search
struct MapM<K, V>(/* private fields */);