pub type ArcMap<T> = Arc<HashMap<u64, T>>;
An thread-safe reference-counted allocation of a hashmap.
struct ArcMap<T> { /* private fields */ }