BTreeMultiMap

Type Alias BTreeMultiMap 

Source
pub type BTreeMultiMap<K, V> = MultiMap<BTreeMap<K, BTreeSet<V>>>;
Expand description

A multi-map that uses BTreeMap for the keys and BTreeSet for the values.

Aliased Typeยง

pub struct BTreeMultiMap<K, V> { /* private fields */ }