pub struct TotalIndexMap<K, V> { /* private fields */ }
Expand description
An IndexMap where the keys are hashed and compared with TotalOrd/TotalEq.
Implementations§
Source§impl<K: TotalHash + TotalEq, V> TotalIndexMap<K, V>
impl<K: TotalHash + TotalEq, V> TotalIndexMap<K, V>
pub fn reserve(&mut self, additional: usize)
pub fn len(&self) -> IdxSize
pub fn is_empty(&self) -> bool
pub fn get(&self, key: &K) -> Option<&V>
pub fn entry(&mut self, key: K) -> Entry<'_, K, V>
Sourcepub fn get_index(&self, idx: IdxSize) -> Option<(&K, &V)>
pub fn get_index(&self, idx: IdxSize) -> Option<(&K, &V)>
Gets the key and value at the given index by insertion order.
Sourcepub unsafe fn get_index_unchecked(&self, idx: IdxSize) -> (&K, &V)
pub unsafe fn get_index_unchecked(&self, idx: IdxSize) -> (&K, &V)
Gets the key and value at the given index by insertion order.
§Safety
The index must be less than len().
Sourcepub fn iter_values(&self) -> impl Iterator<Item = &V>
pub fn iter_values(&self) -> impl Iterator<Item = &V>
Iterates over the values in insertion order.
Trait Implementations§
Auto Trait Implementations§
impl<K, V> Freeze for TotalIndexMap<K, V>
impl<K, V> RefUnwindSafe for TotalIndexMap<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for TotalIndexMap<K, V>
impl<K, V> Sync for TotalIndexMap<K, V>
impl<K, V> Unpin for TotalIndexMap<K, V>
impl<K, V> UnwindSafe for TotalIndexMap<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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 more