pub struct IndexMap<K, V, S = RandomState> { /* private fields */ }
Expand description
A hash table where the iteration order of the key-value pairs is independent of the hash values of the keys.
The interface is closely compatible with the standard
HashMap
,
but also has additional features.
§Order
The key-value pairs have a consistent order that is determined by the sequence of insertion and removal calls on the map. The order does not depend on the keys or the hash function at all.
All iterators traverse the map in the order.
The insertion order is preserved, with notable exceptions like the
.remove()
or .swap_remove()
methods.
Methods such as .sort_by()
of
course result in a new order, depending on the sorting order.
§Indices
The key-value pairs are indexed in a compact range without holes in the
range 0..self.len()
. For example, the method .get_full
looks up the
index for a key, and the method .get_index
looks up the key-value pair by
index.
§Examples
use indexmap::IndexMap;
// count the frequency of each letter in a sentence.
let mut letters = IndexMap::new();
for ch in "a short treatise on fungi".chars() {
*letters.entry(ch).or_insert(0) += 1;
}
assert_eq!(letters[&'s'], 2);
assert_eq!(letters[&'t'], 3);
assert_eq!(letters[&'u'], 1);
assert_eq!(letters.get(&'y'), None);
Implementations§
source§impl<K, V> IndexMap<K, V>
impl<K, V> IndexMap<K, V>
sourcepub fn with_capacity(n: usize) -> Self
pub fn with_capacity(n: usize) -> Self
Create a new map with capacity for n
key-value pairs. (Does not
allocate if n
is zero.)
Computes in O(n) time.
source§impl<K, V, S> IndexMap<K, V, S>
impl<K, V, S> IndexMap<K, V, S>
sourcepub fn with_capacity_and_hasher(n: usize, hash_builder: S) -> Self
pub fn with_capacity_and_hasher(n: usize, hash_builder: S) -> Self
Create a new map with capacity for n
key-value pairs. (Does not
allocate if n
is zero.)
Computes in O(n) time.
sourcepub const fn with_hasher(hash_builder: S) -> Self
pub const fn with_hasher(hash_builder: S) -> Self
Create a new map with hash_builder
.
This function is const
, so it
can be called in static
contexts.
sourcepub fn capacity(&self) -> usize
pub fn capacity(&self) -> usize
Return the number of elements the map can hold without reallocating.
This number is a lower bound; the map might be able to hold more, but is guaranteed to be able to hold at least this many.
Computes in O(1) time.
sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Return the number of key-value pairs in the map.
Computes in O(1) time.
sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Returns true if the map contains no elements.
Computes in O(1) time.
sourcepub fn iter(&self) -> Iter<'_, K, V> ⓘ
pub fn iter(&self) -> Iter<'_, K, V> ⓘ
Return an iterator over the key-value pairs of the map, in their order
sourcepub fn iter_mut(&mut self) -> IterMut<'_, K, V> ⓘ
pub fn iter_mut(&mut self) -> IterMut<'_, K, V> ⓘ
Return an iterator over the key-value pairs of the map, in their order
sourcepub fn keys(&self) -> Keys<'_, K, V> ⓘ
pub fn keys(&self) -> Keys<'_, K, V> ⓘ
Return an iterator over the keys of the map, in their order
sourcepub fn into_keys(self) -> IntoKeys<K, V> ⓘ
pub fn into_keys(self) -> IntoKeys<K, V> ⓘ
Return an owning iterator over the keys of the map, in their order
sourcepub fn values(&self) -> Values<'_, K, V> ⓘ
pub fn values(&self) -> Values<'_, K, V> ⓘ
Return an iterator over the values of the map, in their order
sourcepub fn values_mut(&mut self) -> ValuesMut<'_, K, V> ⓘ
pub fn values_mut(&mut self) -> ValuesMut<'_, K, V> ⓘ
Return an iterator over mutable references to the values of the map, in their order
sourcepub fn into_values(self) -> IntoValues<K, V> ⓘ
pub fn into_values(self) -> IntoValues<K, V> ⓘ
Return an owning iterator over the values of the map, in their order
sourcepub fn clear(&mut self)
pub fn clear(&mut self)
Remove all key-value pairs in the map, while preserving its capacity.
Computes in O(n) time.
sourcepub fn truncate(&mut self, len: usize)
pub fn truncate(&mut self, len: usize)
Shortens the map, keeping the first len
elements and dropping the rest.
If len
is greater than the map’s current length, this has no effect.
sourcepub fn drain<R>(&mut self, range: R) -> Drain<'_, K, V> ⓘwhere
R: RangeBounds<usize>,
pub fn drain<R>(&mut self, range: R) -> Drain<'_, K, V> ⓘwhere
R: RangeBounds<usize>,
Clears the IndexMap
in the given index range, returning those
key-value pairs as a drain iterator.
The range may be any type that implements RangeBounds<usize>
,
including all of the std::ops::Range*
types, or even a tuple pair of
Bound
start and end values. To drain the map entirely, use RangeFull
like map.drain(..)
.
This shifts down all entries following the drained range to fill the gap, and keeps the allocated memory for reuse.
Panics if the starting point is greater than the end point or if the end point is greater than the length of the map.
sourcepub fn split_off(&mut self, at: usize) -> Selfwhere
S: Clone,
pub fn split_off(&mut self, at: usize) -> Selfwhere
S: Clone,
Splits the collection into two at the given index.
Returns a newly allocated map containing the elements in the range
[at, len)
. After the call, the original map will be left containing
the elements [0, at)
with its previous capacity unchanged.
Panics if at > len
.
sourcepub fn reserve(&mut self, additional: usize)
pub fn reserve(&mut self, additional: usize)
Reserve capacity for additional
more key-value pairs.
Computes in O(n) time.
sourcepub fn reserve_exact(&mut self, additional: usize)
pub fn reserve_exact(&mut self, additional: usize)
Reserve capacity for additional
more key-value pairs, without over-allocating.
Unlike reserve
, this does not deliberately over-allocate the entry capacity to avoid
frequent re-allocations. However, the underlying data structures may still have internal
capacity requirements, and the allocator itself may give more space than requested, so this
cannot be relied upon to be precisely minimal.
Computes in O(n) time.
sourcepub fn try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError>
pub fn try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError>
Try to reserve capacity for additional
more key-value pairs.
Computes in O(n) time.
sourcepub fn try_reserve_exact(
&mut self,
additional: usize,
) -> Result<(), TryReserveError>
pub fn try_reserve_exact( &mut self, additional: usize, ) -> Result<(), TryReserveError>
Try to reserve capacity for additional
more key-value pairs, without over-allocating.
Unlike try_reserve
, this does not deliberately over-allocate the entry capacity to avoid
frequent re-allocations. However, the underlying data structures may still have internal
capacity requirements, and the allocator itself may give more space than requested, so this
cannot be relied upon to be precisely minimal.
Computes in O(n) time.
sourcepub fn shrink_to_fit(&mut self)
pub fn shrink_to_fit(&mut self)
Shrink the capacity of the map as much as possible.
Computes in O(n) time.
source§impl<K, V, S> IndexMap<K, V, S>
impl<K, V, S> IndexMap<K, V, S>
sourcepub fn insert(&mut self, key: K, value: V) -> Option<V>
pub fn insert(&mut self, key: K, value: V) -> Option<V>
Insert a key-value pair in the map.
If an equivalent key already exists in the map: the key remains and
retains in its place in the order, its corresponding value is updated
with value
, and the older value is returned inside Some(_)
.
If no equivalent key existed in the map: the new key-value pair is
inserted, last in order, and None
is returned.
Computes in O(1) time (amortized average).
See also entry
if you want to insert or modify,
or insert_full
if you need to get the index of
the corresponding key-value pair.
sourcepub fn insert_full(&mut self, key: K, value: V) -> (usize, Option<V>)
pub fn insert_full(&mut self, key: K, value: V) -> (usize, Option<V>)
Insert a key-value pair in the map, and get their index.
If an equivalent key already exists in the map: the key remains and
retains in its place in the order, its corresponding value is updated
with value
, and the older value is returned inside (index, Some(_))
.
If no equivalent key existed in the map: the new key-value pair is
inserted, last in order, and (index, None)
is returned.
Computes in O(1) time (amortized average).
See also entry
if you want to insert or modify.
sourcepub fn insert_sorted(&mut self, key: K, value: V) -> (usize, Option<V>)where
K: Ord,
pub fn insert_sorted(&mut self, key: K, value: V) -> (usize, Option<V>)where
K: Ord,
Insert a key-value pair in the map at its ordered position among sorted keys.
This is equivalent to finding the position with
binary_search_keys
, then either updating
it or calling insert_before
for a new key.
If the sorted key is found in the map, its corresponding value is
updated with value
, and the older value is returned inside
(index, Some(_))
. Otherwise, the new key-value pair is inserted at
the sorted position, and (index, None)
is returned.
If the existing keys are not already sorted, then the insertion
index is unspecified (like slice::binary_search
), but the key-value
pair is moved to or inserted at that position regardless.
Computes in O(n) time (average). Instead of repeating calls to
insert_sorted
, it may be faster to call batched insert
or extend
and only call sort_keys
or sort_unstable_keys
once.
sourcepub fn insert_before(
&mut self,
index: usize,
key: K,
value: V,
) -> (usize, Option<V>)
pub fn insert_before( &mut self, index: usize, key: K, value: V, ) -> (usize, Option<V>)
Insert a key-value pair in the map before the entry at the given index, or at the end.
If an equivalent key already exists in the map: the key remains and
is moved to the new position in the map, its corresponding value is updated
with value
, and the older value is returned inside Some(_)
. The returned index
will either be the given index or one less, depending on how the entry moved.
(See shift_insert
for different behavior here.)
If no equivalent key existed in the map: the new key-value pair is
inserted exactly at the given index, and None
is returned.
Panics if index
is out of bounds.
Valid indices are 0..=map.len()
(inclusive).
Computes in O(n) time (average).
See also entry
if you want to insert or modify,
perhaps only using the index for new entries with VacantEntry::shift_insert
.
§Examples
use indexmap::IndexMap;
let mut map: IndexMap<char, ()> = ('a'..='z').map(|c| (c, ())).collect();
// The new key '*' goes exactly at the given index.
assert_eq!(map.get_index_of(&'*'), None);
assert_eq!(map.insert_before(10, '*', ()), (10, None));
assert_eq!(map.get_index_of(&'*'), Some(10));
// Moving the key 'a' up will shift others down, so this moves *before* 10 to index 9.
assert_eq!(map.insert_before(10, 'a', ()), (9, Some(())));
assert_eq!(map.get_index_of(&'a'), Some(9));
assert_eq!(map.get_index_of(&'*'), Some(10));
// Moving the key 'z' down will shift others up, so this moves to exactly 10.
assert_eq!(map.insert_before(10, 'z', ()), (10, Some(())));
assert_eq!(map.get_index_of(&'z'), Some(10));
assert_eq!(map.get_index_of(&'*'), Some(11));
// Moving or inserting before the endpoint is also valid.
assert_eq!(map.len(), 27);
assert_eq!(map.insert_before(map.len(), '*', ()), (26, Some(())));
assert_eq!(map.get_index_of(&'*'), Some(26));
assert_eq!(map.insert_before(map.len(), '+', ()), (27, None));
assert_eq!(map.get_index_of(&'+'), Some(27));
assert_eq!(map.len(), 28);
sourcepub fn shift_insert(&mut self, index: usize, key: K, value: V) -> Option<V>
pub fn shift_insert(&mut self, index: usize, key: K, value: V) -> Option<V>
Insert a key-value pair in the map at the given index.
If an equivalent key already exists in the map: the key remains and
is moved to the given index in the map, its corresponding value is updated
with value
, and the older value is returned inside Some(_)
.
Note that existing entries cannot be moved to index == map.len()
!
(See insert_before
for different behavior here.)
If no equivalent key existed in the map: the new key-value pair is
inserted at the given index, and None
is returned.
Panics if index
is out of bounds.
Valid indices are 0..map.len()
(exclusive) when moving an existing entry, or
0..=map.len()
(inclusive) when inserting a new key.
Computes in O(n) time (average).
See also entry
if you want to insert or modify,
perhaps only using the index for new entries with VacantEntry::shift_insert
.
§Examples
use indexmap::IndexMap;
let mut map: IndexMap<char, ()> = ('a'..='z').map(|c| (c, ())).collect();
// The new key '*' goes exactly at the given index.
assert_eq!(map.get_index_of(&'*'), None);
assert_eq!(map.shift_insert(10, '*', ()), None);
assert_eq!(map.get_index_of(&'*'), Some(10));
// Moving the key 'a' up to 10 will shift others down, including the '*' that was at 10.
assert_eq!(map.shift_insert(10, 'a', ()), Some(()));
assert_eq!(map.get_index_of(&'a'), Some(10));
assert_eq!(map.get_index_of(&'*'), Some(9));
// Moving the key 'z' down to 9 will shift others up, including the '*' that was at 9.
assert_eq!(map.shift_insert(9, 'z', ()), Some(()));
assert_eq!(map.get_index_of(&'z'), Some(9));
assert_eq!(map.get_index_of(&'*'), Some(10));
// Existing keys can move to len-1 at most, but new keys can insert at the endpoint.
assert_eq!(map.len(), 27);
assert_eq!(map.shift_insert(map.len() - 1, '*', ()), Some(()));
assert_eq!(map.get_index_of(&'*'), Some(26));
assert_eq!(map.shift_insert(map.len(), '+', ()), None);
assert_eq!(map.get_index_of(&'+'), Some(27));
assert_eq!(map.len(), 28);
use indexmap::IndexMap;
let mut map: IndexMap<char, ()> = ('a'..='z').map(|c| (c, ())).collect();
// This is an invalid index for moving an existing key!
map.shift_insert(map.len(), 'a', ());
sourcepub fn entry(&mut self, key: K) -> Entry<'_, K, V>
pub fn entry(&mut self, key: K) -> Entry<'_, K, V>
Get the given key’s corresponding entry in the map for insertion and/or in-place manipulation.
Computes in O(1) time (amortized average).
sourcepub fn splice<R, I>(
&mut self,
range: R,
replace_with: I,
) -> Splice<'_, I::IntoIter, K, V, S> ⓘ
pub fn splice<R, I>( &mut self, range: R, replace_with: I, ) -> Splice<'_, I::IntoIter, K, V, S> ⓘ
Creates a splicing iterator that replaces the specified range in the map
with the given replace_with
key-value iterator and yields the removed
items. replace_with
does not need to be the same length as range
.
The range
is removed even if the iterator is not consumed until the
end. It is unspecified how many elements are removed from the map if the
Splice
value is leaked.
The input iterator replace_with
is only consumed when the Splice
value is dropped. If a key from the iterator matches an existing entry
in the map (outside of range
), then the value will be updated in that
position. Otherwise, the new key-value pair will be inserted in the
replaced range
.
Panics if the starting point is greater than the end point or if the end point is greater than the length of the map.
§Examples
use indexmap::IndexMap;
let mut map = IndexMap::from([(0, '_'), (1, 'a'), (2, 'b'), (3, 'c'), (4, 'd')]);
let new = [(5, 'E'), (4, 'D'), (3, 'C'), (2, 'B'), (1, 'A')];
let removed: Vec<_> = map.splice(2..4, new).collect();
// 1 and 4 got new values, while 5, 3, and 2 were newly inserted.
assert!(map.into_iter().eq([(0, '_'), (1, 'A'), (5, 'E'), (3, 'C'), (2, 'B'), (4, 'D')]));
assert_eq!(removed, &[(2, 'b'), (3, 'c')]);
sourcepub fn append<S2>(&mut self, other: &mut IndexMap<K, V, S2>)
pub fn append<S2>(&mut self, other: &mut IndexMap<K, V, S2>)
Moves all key-value pairs from other
into self
, leaving other
empty.
This is equivalent to calling insert
for each
key-value pair from other
in order, which means that for keys that
already exist in self
, their value is updated in the current position.
§Examples
use indexmap::IndexMap;
// Note: Key (3) is present in both maps.
let mut a = IndexMap::from([(3, "c"), (2, "b"), (1, "a")]);
let mut b = IndexMap::from([(3, "d"), (4, "e"), (5, "f")]);
let old_capacity = b.capacity();
a.append(&mut b);
assert_eq!(a.len(), 5);
assert_eq!(b.len(), 0);
assert_eq!(b.capacity(), old_capacity);
assert!(a.keys().eq(&[3, 2, 1, 4, 5]));
assert_eq!(a[&3], "d"); // "c" was overwritten.
source§impl<K, V, S> IndexMap<K, V, S>where
S: BuildHasher,
impl<K, V, S> IndexMap<K, V, S>where
S: BuildHasher,
sourcepub fn contains_key<Q>(&self, key: &Q) -> bool
pub fn contains_key<Q>(&self, key: &Q) -> bool
Return true
if an equivalent to key
exists in the map.
Computes in O(1) time (average).
sourcepub fn get<Q>(&self, key: &Q) -> Option<&V>
pub fn get<Q>(&self, key: &Q) -> Option<&V>
Return a reference to the value stored for key
, if it is present,
else None
.
Computes in O(1) time (average).
sourcepub fn get_key_value<Q>(&self, key: &Q) -> Option<(&K, &V)>
pub fn get_key_value<Q>(&self, key: &Q) -> Option<(&K, &V)>
Return references to the key-value pair stored for key
,
if it is present, else None
.
Computes in O(1) time (average).
sourcepub fn get_index_of<Q>(&self, key: &Q) -> Option<usize>
pub fn get_index_of<Q>(&self, key: &Q) -> Option<usize>
Return item index, if it exists in the map
Computes in O(1) time (average).
pub fn get_mut<Q>(&mut self, key: &Q) -> Option<&mut V>
pub fn get_full_mut<Q>(&mut self, key: &Q) -> Option<(usize, &K, &mut V)>
sourcepub fn remove<Q>(&mut self, key: &Q) -> Option<V>
👎Deprecated: remove
disrupts the map order – use swap_remove
or shift_remove
for explicit behavior.
pub fn remove<Q>(&mut self, key: &Q) -> Option<V>
remove
disrupts the map order – use swap_remove
or shift_remove
for explicit behavior.Remove the key-value pair equivalent to key
and return
its value.
NOTE: This is equivalent to .swap_remove(key)
, replacing this
entry’s position with the last element, and it is deprecated in favor of calling that
explicitly. If you need to preserve the relative order of the keys in the map, use
.shift_remove(key)
instead.
sourcepub fn remove_entry<Q>(&mut self, key: &Q) -> Option<(K, V)>
👎Deprecated: remove_entry
disrupts the map order – use swap_remove_entry
or shift_remove_entry
for explicit behavior.
pub fn remove_entry<Q>(&mut self, key: &Q) -> Option<(K, V)>
remove_entry
disrupts the map order – use swap_remove_entry
or shift_remove_entry
for explicit behavior.Remove and return the key-value pair equivalent to key
.
NOTE: This is equivalent to .swap_remove_entry(key)
,
replacing this entry’s position with the last element, and it is deprecated in favor of
calling that explicitly. If you need to preserve the relative order of the keys in the map,
use .shift_remove_entry(key)
instead.
sourcepub fn swap_remove<Q>(&mut self, key: &Q) -> Option<V>
pub fn swap_remove<Q>(&mut self, key: &Q) -> Option<V>
Remove the key-value pair equivalent to key
and return
its value.
Like Vec::swap_remove
, the pair is removed by swapping it with the
last element of the map and popping it off. This perturbs
the position of what used to be the last element!
Return None
if key
is not in map.
Computes in O(1) time (average).
sourcepub fn swap_remove_entry<Q>(&mut self, key: &Q) -> Option<(K, V)>
pub fn swap_remove_entry<Q>(&mut self, key: &Q) -> Option<(K, V)>
Remove and return the key-value pair equivalent to key
.
Like Vec::swap_remove
, the pair is removed by swapping it with the
last element of the map and popping it off. This perturbs
the position of what used to be the last element!
Return None
if key
is not in map.
Computes in O(1) time (average).
sourcepub fn swap_remove_full<Q>(&mut self, key: &Q) -> Option<(usize, K, V)>
pub fn swap_remove_full<Q>(&mut self, key: &Q) -> Option<(usize, K, V)>
Remove the key-value pair equivalent to key
and return it and
the index it had.
Like Vec::swap_remove
, the pair is removed by swapping it with the
last element of the map and popping it off. This perturbs
the position of what used to be the last element!
Return None
if key
is not in map.
Computes in O(1) time (average).
sourcepub fn shift_remove<Q>(&mut self, key: &Q) -> Option<V>
pub fn shift_remove<Q>(&mut self, key: &Q) -> Option<V>
Remove the key-value pair equivalent to key
and return
its value.
Like Vec::remove
, the pair is removed by shifting all of the
elements that follow it, preserving their relative order.
This perturbs the index of all of those elements!
Return None
if key
is not in map.
Computes in O(n) time (average).
sourcepub fn shift_remove_entry<Q>(&mut self, key: &Q) -> Option<(K, V)>
pub fn shift_remove_entry<Q>(&mut self, key: &Q) -> Option<(K, V)>
Remove and return the key-value pair equivalent to key
.
Like Vec::remove
, the pair is removed by shifting all of the
elements that follow it, preserving their relative order.
This perturbs the index of all of those elements!
Return None
if key
is not in map.
Computes in O(n) time (average).
sourcepub fn shift_remove_full<Q>(&mut self, key: &Q) -> Option<(usize, K, V)>
pub fn shift_remove_full<Q>(&mut self, key: &Q) -> Option<(usize, K, V)>
Remove the key-value pair equivalent to key
and return it and
the index it had.
Like Vec::remove
, the pair is removed by shifting all of the
elements that follow it, preserving their relative order.
This perturbs the index of all of those elements!
Return None
if key
is not in map.
Computes in O(n) time (average).
source§impl<K, V, S> IndexMap<K, V, S>
impl<K, V, S> IndexMap<K, V, S>
sourcepub fn pop(&mut self) -> Option<(K, V)>
pub fn pop(&mut self) -> Option<(K, V)>
Remove the last key-value pair
This preserves the order of the remaining elements.
Computes in O(1) time (average).
sourcepub fn retain<F>(&mut self, keep: F)
pub fn retain<F>(&mut self, keep: F)
Scan through each key-value pair in the map and keep those where the
closure keep
returns true
.
The elements are visited in order, and remaining elements keep their order.
Computes in O(n) time (average).
sourcepub fn sort_keys(&mut self)where
K: Ord,
pub fn sort_keys(&mut self)where
K: Ord,
Sort the map’s key-value pairs by the default ordering of the keys.
This is a stable sort – but equivalent keys should not normally coexist in
a map at all, so sort_unstable_keys
is preferred
because it is generally faster and doesn’t allocate auxiliary memory.
See sort_by
for details.
sourcepub fn sort_by<F>(&mut self, cmp: F)
pub fn sort_by<F>(&mut self, cmp: F)
Sort the map’s key-value pairs in place using the comparison
function cmp
.
The comparison function receives two key and value pairs to compare (you can sort by keys or values or their combination as needed).
Computes in O(n log n + c) time and O(n) space where n is the length of the map and c the capacity. The sort is stable.
sourcepub fn sorted_by<F>(self, cmp: F) -> IntoIter<K, V> ⓘ
pub fn sorted_by<F>(self, cmp: F) -> IntoIter<K, V> ⓘ
Sort the key-value pairs of the map and return a by-value iterator of the key-value pairs with the result.
The sort is stable.
sourcepub fn sort_unstable_keys(&mut self)where
K: Ord,
pub fn sort_unstable_keys(&mut self)where
K: Ord,
Sort the map’s key-value pairs by the default ordering of the keys, but may not preserve the order of equal elements.
See sort_unstable_by
for details.
sourcepub fn sort_unstable_by<F>(&mut self, cmp: F)
pub fn sort_unstable_by<F>(&mut self, cmp: F)
Sort the map’s key-value pairs in place using the comparison function cmp
, but
may not preserve the order of equal elements.
The comparison function receives two key and value pairs to compare (you can sort by keys or values or their combination as needed).
Computes in O(n log n + c) time where n is the length of the map and c is the capacity. The sort is unstable.
sourcepub fn sorted_unstable_by<F>(self, cmp: F) -> IntoIter<K, V> ⓘ
pub fn sorted_unstable_by<F>(self, cmp: F) -> IntoIter<K, V> ⓘ
Sort the key-value pairs of the map and return a by-value iterator of the key-value pairs with the result.
The sort is unstable.
sourcepub fn sort_by_cached_key<T, F>(&mut self, sort_key: F)
pub fn sort_by_cached_key<T, F>(&mut self, sort_key: F)
Sort the map’s key-value pairs in place using a sort-key extraction function.
During sorting, the function is called at most once per entry, by using temporary storage
to remember the results of its evaluation. The order of calls to the function is
unspecified and may change between versions of indexmap
or the standard library.
Computes in O(m n + n log n + c) time () and O(n) space, where the function is O(m), n is the length of the map, and c the capacity. The sort is stable.
sourcepub fn binary_search_keys(&self, x: &K) -> Result<usize, usize>where
K: Ord,
pub fn binary_search_keys(&self, x: &K) -> Result<usize, usize>where
K: Ord,
Search over a sorted map for a key.
Returns the position where that key is present, or the position where it can be inserted to
maintain the sort. See slice::binary_search
for more details.
Computes in O(log(n)) time, which is notably less scalable than looking the key up
using get_index_of
, but this can also position missing keys.
sourcepub fn binary_search_by<'a, F>(&'a self, f: F) -> Result<usize, usize>
pub fn binary_search_by<'a, F>(&'a self, f: F) -> Result<usize, usize>
Search over a sorted map with a comparator function.
Returns the position where that value is present, or the position where it can be inserted
to maintain the sort. See slice::binary_search_by
for more details.
Computes in O(log(n)) time.
sourcepub fn binary_search_by_key<'a, B, F>(
&'a self,
b: &B,
f: F,
) -> Result<usize, usize>
pub fn binary_search_by_key<'a, B, F>( &'a self, b: &B, f: F, ) -> Result<usize, usize>
Search over a sorted map with an extraction function.
Returns the position where that value is present, or the position where it can be inserted
to maintain the sort. See slice::binary_search_by_key
for more details.
Computes in O(log(n)) time.
sourcepub fn partition_point<P>(&self, pred: P) -> usize
pub fn partition_point<P>(&self, pred: P) -> usize
Returns the index of the partition point of a sorted map according to the given predicate (the index of the first element of the second partition).
See slice::partition_point
for more details.
Computes in O(log(n)) time.
sourcepub fn reverse(&mut self)
pub fn reverse(&mut self)
Reverses the order of the map’s key-value pairs in place.
Computes in O(n) time and O(1) space.
sourcepub fn as_slice(&self) -> &Slice<K, V>
pub fn as_slice(&self) -> &Slice<K, V>
Returns a slice of all the key-value pairs in the map.
Computes in O(1) time.
sourcepub fn as_mut_slice(&mut self) -> &mut Slice<K, V>
pub fn as_mut_slice(&mut self) -> &mut Slice<K, V>
Returns a mutable slice of all the key-value pairs in the map.
Computes in O(1) time.
sourcepub fn into_boxed_slice(self) -> Box<Slice<K, V>>
pub fn into_boxed_slice(self) -> Box<Slice<K, V>>
Converts into a boxed slice of all the key-value pairs in the map.
Note that this will drop the inner hash table and any excess capacity.
sourcepub fn get_index(&self, index: usize) -> Option<(&K, &V)>
pub fn get_index(&self, index: usize) -> Option<(&K, &V)>
Get a key-value pair by index
Valid indices are 0 <= index < self.len()
.
Computes in O(1) time.
sourcepub fn get_index_mut(&mut self, index: usize) -> Option<(&K, &mut V)>
pub fn get_index_mut(&mut self, index: usize) -> Option<(&K, &mut V)>
Get a key-value pair by index
Valid indices are 0 <= index < self.len()
.
Computes in O(1) time.
sourcepub fn get_index_entry(
&mut self,
index: usize,
) -> Option<IndexedEntry<'_, K, V>>
pub fn get_index_entry( &mut self, index: usize, ) -> Option<IndexedEntry<'_, K, V>>
Get an entry in the map by index for in-place manipulation.
Valid indices are 0 <= index < self.len()
.
Computes in O(1) time.
sourcepub fn get_range<R: RangeBounds<usize>>(&self, range: R) -> Option<&Slice<K, V>>
pub fn get_range<R: RangeBounds<usize>>(&self, range: R) -> Option<&Slice<K, V>>
Returns a slice of key-value pairs in the given range of indices.
Valid indices are 0 <= index < self.len()
.
Computes in O(1) time.
sourcepub fn get_range_mut<R: RangeBounds<usize>>(
&mut self,
range: R,
) -> Option<&mut Slice<K, V>>
pub fn get_range_mut<R: RangeBounds<usize>>( &mut self, range: R, ) -> Option<&mut Slice<K, V>>
Returns a mutable slice of key-value pairs in the given range of indices.
Valid indices are 0 <= index < self.len()
.
Computes in O(1) time.
sourcepub fn first_mut(&mut self) -> Option<(&K, &mut V)>
pub fn first_mut(&mut self) -> Option<(&K, &mut V)>
Get the first key-value pair, with mutable access to the value
Computes in O(1) time.
sourcepub fn first_entry(&mut self) -> Option<IndexedEntry<'_, K, V>>
pub fn first_entry(&mut self) -> Option<IndexedEntry<'_, K, V>>
Get the first entry in the map for in-place manipulation.
Computes in O(1) time.
sourcepub fn last_mut(&mut self) -> Option<(&K, &mut V)>
pub fn last_mut(&mut self) -> Option<(&K, &mut V)>
Get the last key-value pair, with mutable access to the value
Computes in O(1) time.
sourcepub fn last_entry(&mut self) -> Option<IndexedEntry<'_, K, V>>
pub fn last_entry(&mut self) -> Option<IndexedEntry<'_, K, V>>
Get the last entry in the map for in-place manipulation.
Computes in O(1) time.
sourcepub fn swap_remove_index(&mut self, index: usize) -> Option<(K, V)>
pub fn swap_remove_index(&mut self, index: usize) -> Option<(K, V)>
Remove the key-value pair by index
Valid indices are 0 <= index < self.len()
.
Like Vec::swap_remove
, the pair is removed by swapping it with the
last element of the map and popping it off. This perturbs
the position of what used to be the last element!
Computes in O(1) time (average).
sourcepub fn shift_remove_index(&mut self, index: usize) -> Option<(K, V)>
pub fn shift_remove_index(&mut self, index: usize) -> Option<(K, V)>
Remove the key-value pair by index
Valid indices are 0 <= index < self.len()
.
Like Vec::remove
, the pair is removed by shifting all of the
elements that follow it, preserving their relative order.
This perturbs the index of all of those elements!
Computes in O(n) time (average).
sourcepub fn move_index(&mut self, from: usize, to: usize)
pub fn move_index(&mut self, from: usize, to: usize)
Moves the position of a key-value pair from one index to another by shifting all other pairs in-between.
- If
from < to
, the other pairs will shift down while the targeted pair moves up. - If
from > to
, the other pairs will shift up while the targeted pair moves down.
Panics if from
or to
are out of bounds.
Computes in O(n) time (average).
sourcepub fn swap_indices(&mut self, a: usize, b: usize)
pub fn swap_indices(&mut self, a: usize, b: usize)
Swaps the position of two key-value pairs in the map.
Panics if a
or b
are out of bounds.
Computes in O(1) time (average).
Trait Implementations§
source§impl<'de, K, V, S> Deserialize<'de> for IndexMap<K, V, S>
impl<'de, K, V, S> Deserialize<'de> for IndexMap<K, V, S>
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
source§impl<'a, K, V, S> Extend<(&'a K, &'a V)> for IndexMap<K, V, S>
impl<'a, K, V, S> Extend<(&'a K, &'a V)> for IndexMap<K, V, S>
source§fn extend<I: IntoIterator<Item = (&'a K, &'a V)>>(&mut self, iterable: I)
fn extend<I: IntoIterator<Item = (&'a K, &'a V)>>(&mut self, iterable: I)
Extend the map with all key-value pairs in the iterable.
See the first extend method for more details.
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)source§impl<K, V, S> Extend<(K, V)> for IndexMap<K, V, S>
impl<K, V, S> Extend<(K, V)> for IndexMap<K, V, S>
source§fn extend<I: IntoIterator<Item = (K, V)>>(&mut self, iterable: I)
fn extend<I: IntoIterator<Item = (K, V)>>(&mut self, iterable: I)
Extend the map with all key-value pairs in the iterable.
This is equivalent to calling insert
for each of
them in order, which means that for keys that already existed
in the map, their value is updated but it keeps the existing order.
New keys are inserted in the order they appear in the sequence. If equivalents of a key occur more than once, the last corresponding value prevails.
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)source§impl<K, V, S> FromIterator<(K, V)> for IndexMap<K, V, S>
impl<K, V, S> FromIterator<(K, V)> for IndexMap<K, V, S>
source§impl<K, V, Q, S> Index<&Q> for IndexMap<K, V, S>
impl<K, V, Q, S> Index<&Q> for IndexMap<K, V, S>
Access IndexMap
values corresponding to a key.
§Examples
use indexmap::IndexMap;
let mut map = IndexMap::new();
for word in "Lorem ipsum dolor sit amet".split_whitespace() {
map.insert(word.to_lowercase(), word.to_uppercase());
}
assert_eq!(map["lorem"], "LOREM");
assert_eq!(map["ipsum"], "IPSUM");
use indexmap::IndexMap;
let mut map = IndexMap::new();
map.insert("foo", 1);
println!("{:?}", map["bar"]); // panics!
source§impl<K, V, S> Index<usize> for IndexMap<K, V, S>
impl<K, V, S> Index<usize> for IndexMap<K, V, S>
Access IndexMap
values at indexed positions.
See Index<usize> for Keys
to access a map’s keys instead.
§Examples
use indexmap::IndexMap;
let mut map = IndexMap::new();
for word in "Lorem ipsum dolor sit amet".split_whitespace() {
map.insert(word.to_lowercase(), word.to_uppercase());
}
assert_eq!(map[0], "LOREM");
assert_eq!(map[1], "IPSUM");
map.reverse();
assert_eq!(map[0], "AMET");
assert_eq!(map[1], "SIT");
map.sort_keys();
assert_eq!(map[0], "AMET");
assert_eq!(map[1], "DOLOR");
use indexmap::IndexMap;
let mut map = IndexMap::new();
map.insert("foo", 1);
println!("{:?}", map[10]); // panics!
source§impl<K, V, Q, S> IndexMut<&Q> for IndexMap<K, V, S>
impl<K, V, Q, S> IndexMut<&Q> for IndexMap<K, V, S>
Access IndexMap
values corresponding to a key.
Mutable indexing allows changing / updating values of key-value pairs that are already present.
You can not insert new pairs with index syntax, use .insert()
.
§Examples
use indexmap::IndexMap;
let mut map = IndexMap::new();
for word in "Lorem ipsum dolor sit amet".split_whitespace() {
map.insert(word.to_lowercase(), word.to_string());
}
let lorem = &mut map["lorem"];
assert_eq!(lorem, "Lorem");
lorem.retain(char::is_lowercase);
assert_eq!(map["lorem"], "orem");
use indexmap::IndexMap;
let mut map = IndexMap::new();
map.insert("foo", 1);
map["bar"] = 1; // panics!
source§impl<K, V, S> IndexMut<usize> for IndexMap<K, V, S>
impl<K, V, S> IndexMut<usize> for IndexMap<K, V, S>
Access IndexMap
values at indexed positions.
Mutable indexing allows changing / updating indexed values that are already present.
You can not insert new values with index syntax – use .insert()
.
§Examples
use indexmap::IndexMap;
let mut map = IndexMap::new();
for word in "Lorem ipsum dolor sit amet".split_whitespace() {
map.insert(word.to_lowercase(), word.to_string());
}
let lorem = &mut map[0];
assert_eq!(lorem, "Lorem");
lorem.retain(char::is_lowercase);
assert_eq!(map["lorem"], "orem");
use indexmap::IndexMap;
let mut map = IndexMap::new();
map.insert("foo", 1);
map[10] = 1; // panics!
source§impl<'de, K, V, S, E> IntoDeserializer<'de, E> for IndexMap<K, V, S>where
K: IntoDeserializer<'de, E> + Eq + Hash,
V: IntoDeserializer<'de, E>,
S: BuildHasher,
E: Error,
impl<'de, K, V, S, E> IntoDeserializer<'de, E> for IndexMap<K, V, S>where
K: IntoDeserializer<'de, E> + Eq + Hash,
V: IntoDeserializer<'de, E>,
S: BuildHasher,
E: Error,
§type Deserializer = MapDeserializer<'de, <IndexMap<K, V, S> as IntoIterator>::IntoIter, E>
type Deserializer = MapDeserializer<'de, <IndexMap<K, V, S> as IntoIterator>::IntoIter, E>
source§fn into_deserializer(self) -> Self::Deserializer
fn into_deserializer(self) -> Self::Deserializer
source§impl<'a, K, V, S> IntoIterator for &'a IndexMap<K, V, S>
impl<'a, K, V, S> IntoIterator for &'a IndexMap<K, V, S>
source§impl<'a, K, V, S> IntoIterator for &'a mut IndexMap<K, V, S>
impl<'a, K, V, S> IntoIterator for &'a mut IndexMap<K, V, S>
source§impl<K, V, S> IntoIterator for IndexMap<K, V, S>
impl<K, V, S> IntoIterator for IndexMap<K, V, S>
source§impl<K, V, S> MutableKeys for IndexMap<K, V, S>where
S: BuildHasher,
impl<K, V, S> MutableKeys for IndexMap<K, V, S>where
S: BuildHasher,
Opt-in mutable access to IndexMap
keys.
See MutableKeys
for more information.
type Key = K
type Value = V
source§fn get_full_mut2<Q>(&mut self, key: &Q) -> Option<(usize, &mut K, &mut V)>
fn get_full_mut2<Q>(&mut self, key: &Q) -> Option<(usize, &mut K, &mut V)>
source§fn get_index_mut2(&mut self, index: usize) -> Option<(&mut K, &mut V)>
fn get_index_mut2(&mut self, index: usize) -> Option<(&mut K, &mut V)>
source§impl<K, V1, S1, V2, S2> PartialEq<IndexMap<K, V2, S2>> for IndexMap<K, V1, S1>
impl<K, V1, S1, V2, S2> PartialEq<IndexMap<K, V2, S2>> for IndexMap<K, V1, S1>
source§impl<K, V, S> RawEntryApiV1<K, V, S> for IndexMap<K, V, S>
impl<K, V, S> RawEntryApiV1<K, V, S> for IndexMap<K, V, S>
source§fn raw_entry_v1(&self) -> RawEntryBuilder<'_, K, V, S>
fn raw_entry_v1(&self) -> RawEntryBuilder<'_, K, V, S>
source§fn raw_entry_mut_v1(&mut self) -> RawEntryBuilderMut<'_, K, V, S>
fn raw_entry_mut_v1(&mut self) -> RawEntryBuilderMut<'_, K, V, S>
impl<K, V, S> Eq for IndexMap<K, V, S>
Auto Trait Implementations§
impl<K, V, S> Freeze for IndexMap<K, V, S>where
S: Freeze,
impl<K, V, S> RefUnwindSafe for IndexMap<K, V, S>
impl<K, V, S> Send for IndexMap<K, V, S>
impl<K, V, S> Sync for IndexMap<K, V, S>
impl<K, V, S> Unpin for IndexMap<K, V, S>
impl<K, V, S> UnwindSafe for IndexMap<K, V, S>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.