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