vortex_array/aliases/
mod.rs

1//! Re-exports of third-party crates we use in the API.
2//!
3//! The HashMap/Set should be preferred over the standard library variants or other alternatives.
4//! Currently defers to the excellent [hashbrown](https://docs.rs/hashbrown/latest/hashbrown/) crate.
5
6pub mod hash_map;
7pub mod hash_set;
8
9pub use hashbrown::DefaultHashBuilder;
10
11pub mod paste {
12    //! Re-export of [`paste`](https://docs.rs/paste/latest/paste/).
13    pub use paste::paste;
14}