1
2
3
4
5
/// Map type alias for the whole library
pub type Map<K, V> = std::collections::BTreeMap<K, V>;

/// Set type alias for the whole library
pub type Set<T> = std::collections::BTreeSet<T>;