tinymist_std/adt/
mod.rs

1
2
3
4
5
6
7
//! This module contains the implementation of the abstract data types.

pub mod fmap;
pub use fmap::FingerprintMap;

// todo: remove it if we could find a better alternative
pub use dashmap::DashMap as CHashMap;