Struct rustc_data_structures::sorted_map::index_map::SortedIndexMultiMap [−][src]
pub struct SortedIndexMultiMap<I: Idx, K, V> {
items: IndexVec<I, (K, V)>,
idx_sorted_by_item_key: Vec<I>,
}
Expand description
An indexed multi-map that preserves insertion order while permitting both O(log n) lookup of an item by key and O(1) lookup by index.
This data structure is a hybrid of an IndexVec
and a SortedMap
. Like IndexVec
,
SortedIndexMultiMap
assigns a typed index to each item while preserving insertion order.
Like SortedMap
, SortedIndexMultiMap
has efficient lookup of items by key. However, this
is accomplished by sorting an array of item indices instead of the items themselves.
Unlike SortedMap
, this data structure can hold multiple equivalent items at once, so the
get_by_key
method and its variants return an iterator instead of an Option
. Equivalent
items will be yielded in insertion order.
Unlike a general-purpose map like BTreeSet
or HashSet
, SortedMap
and
SortedIndexMultiMap
require O(n) time to insert a single item. This is because we may need
to insert into the middle of the sorted array. Users should avoid mutating this data structure
in-place.
Fields
items: IndexVec<I, (K, V)>
The elements of the map in insertion order.
idx_sorted_by_item_key: Vec<I>
Indices of the items in the set, sorted by the item’s key.
Implementations
Returns an iterator over the items in the map in insertion order.
Returns an iterator over the items in the map in insertion order along with their indices.
Returns an iterator over the items in the map in insertion order.
Returns an iterator over the items in the map in insertion order along with their indices.
Returns an iterator over the items in the map that are equal to key
.
If there are multiple items that are equivalent to key
, they will be yielded in
insertion order.
Trait Implementations
impl<I: Idx, K, V, C> HashStable<C> for SortedIndexMultiMap<I, K, V> where
K: HashStable<C>,
V: HashStable<C>,
impl<I: Idx, K, V, C> HashStable<C> for SortedIndexMultiMap<I, K, V> where
K: HashStable<C>,
V: HashStable<C>,
impl<I: Idx, K: PartialEq, V: PartialEq> PartialEq<SortedIndexMultiMap<I, K, V>> for SortedIndexMultiMap<I, K, V>
impl<I: Idx, K: PartialEq, V: PartialEq> PartialEq<SortedIndexMultiMap<I, K, V>> for SortedIndexMultiMap<I, K, V>
Auto Trait Implementations
impl<I, K, V> RefUnwindSafe for SortedIndexMultiMap<I, K, V> where
I: RefUnwindSafe,
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<I, K, V> Send for SortedIndexMultiMap<I, K, V> where
I: Send,
K: Send,
V: Send,
impl<I, K, V> Sync for SortedIndexMultiMap<I, K, V> where
I: Sync,
K: Sync,
V: Sync,
impl<I, K, V> Unpin for SortedIndexMultiMap<I, K, V> where
I: Unpin,
K: Unpin,
V: Unpin,
impl<I, K, V> UnwindSafe for SortedIndexMultiMap<I, K, V> where
I: UnwindSafe,
K: UnwindSafe,
V: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 48 bytes