tinymist_std/adt/
mod.rs

1//! This module contains the implementation of the abstract data types.
2
3pub mod fmap;
4pub use fmap::FingerprintMap;
5
6// todo: remove it if we could find a better alternative
7pub use dashmap::DashMap as CHashMap;