pub struct SortedMap<K, V> {
data: Vec<(K, V)>,
}
Expand description
SortedMap
is a data structure with similar characteristics as BTreeMap but
slightly different trade-offs: lookup is O(log(n)), insertion and removal
are O(n) but elements can be iterated in order cheaply.
SortedMap
can be faster than a BTreeMap
for small sizes (<50) since it
stores data in a more compact way. It also supports accessing contiguous
ranges of elements as a slice, and slices of already sorted elements can be
inserted efficiently.
Fields§
§data: Vec<(K, V)>
Implementations§
source§impl<K: Ord, V> SortedMap<K, V>
impl<K: Ord, V> SortedMap<K, V>
sourcepub fn from_presorted_elements(elements: Vec<(K, V)>) -> SortedMap<K, V>
pub fn from_presorted_elements(elements: Vec<(K, V)>) -> SortedMap<K, V>
Construct a SortedMap
from a presorted set of elements. This is faster
than creating an empty map and then inserting the elements individually.
It is up to the caller to make sure that the elements are sorted by key and that there are no duplicates.
pub fn insert(&mut self, key: K, value: V) -> Option<V>
pub fn remove(&mut self, key: &K) -> Option<V>
pub fn get<Q>(&self, key: &Q) -> Option<&V>
pub fn get_mut<Q>(&mut self, key: &Q) -> Option<&mut V>
sourcepub fn get_mut_or_insert_default(&mut self, key: K) -> &mut V
pub fn get_mut_or_insert_default(&mut self, key: K) -> &mut V
Gets a mutable reference to the value in the entry, or insert a new one.
pub fn clear(&mut self)
sourcepub fn keys(&self) -> impl ExactSizeIterator<Item = &K> + DoubleEndedIterator
pub fn keys(&self) -> impl ExactSizeIterator<Item = &K> + DoubleEndedIterator
Iterate over the keys, sorted
sourcepub fn values(&self) -> impl ExactSizeIterator<Item = &V> + DoubleEndedIterator
pub fn values(&self) -> impl ExactSizeIterator<Item = &V> + DoubleEndedIterator
Iterate over values, sorted by key
pub fn len(&self) -> usize
pub fn is_empty(&self) -> bool
pub fn range<R>(&self, range: R) -> &[(K, V)]where
R: RangeBounds<K>,
pub fn remove_range<R>(&mut self, range: R)where
R: RangeBounds<K>,
sourcepub fn offset_keys<F>(&mut self, f: F)
pub fn offset_keys<F>(&mut self, f: F)
Mutate all keys with the given function f
. This mutation must not
change the sort-order of keys.
sourcepub fn insert_presorted(&mut self, elements: Vec<(K, V)>)
pub fn insert_presorted(&mut self, elements: Vec<(K, V)>)
Inserts a presorted range of elements into the map. If the range can be inserted as a whole in between to existing elements of the map, this will be faster than inserting the elements individually.
It is up to the caller to make sure that the elements are sorted by key and that there are no duplicates.
sourcefn lookup_index_for<Q>(&self, key: &Q) -> Result<usize, usize>
fn lookup_index_for<Q>(&self, key: &Q) -> Result<usize, usize>
Looks up the key in self.data
via slice::binary_search()
.
fn range_slice_indices<R>(&self, range: R) -> (usize, usize)where
R: RangeBounds<K>,
pub fn contains_key<Q>(&self, key: &Q) -> bool
Trait Implementations§
source§impl<K: HashStable<CTX> + StableOrd, V: HashStable<CTX>, CTX> HashStable<CTX> for SortedMap<K, V>
impl<K: HashStable<CTX> + StableOrd, V: HashStable<CTX>, CTX> HashStable<CTX> for SortedMap<K, V>
fn hash_stable(&self, ctx: &mut CTX, hasher: &mut StableHasher)
source§impl<K: Ord, V> IntoIterator for SortedMap<K, V>
impl<K: Ord, V> IntoIterator for SortedMap<K, V>
source§impl<K: Ord, V: Ord> Ord for SortedMap<K, V>
impl<K: Ord, V: Ord> Ord for SortedMap<K, V>
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl<K: PartialOrd, V: PartialOrd> PartialOrd for SortedMap<K, V>
impl<K: PartialOrd, V: PartialOrd> PartialOrd for SortedMap<K, V>
impl<K: Eq, V: Eq> Eq for SortedMap<K, V>
impl<K, V> StructuralPartialEq for SortedMap<K, V>
Auto Trait Implementations§
impl<K, V> Freeze for SortedMap<K, V>
impl<K, V> RefUnwindSafe for SortedMap<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for SortedMap<K, V>
impl<K, V> Sync for SortedMap<K, V>
impl<K, V> Unpin for SortedMap<K, V>
impl<K, V> UnwindSafe for SortedMap<K, V>where
K: UnwindSafe,
V: UnwindSafe,
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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§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.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
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: 24 bytes