Enum rustc_ap_rustc_data_structures::sso::SsoHashMap[][src]

pub enum SsoHashMap<K, V> {
    Array(ArrayVec<(K, V), SSO_ARRAY_SIZE>),
    Map(FxHashMap<K, V>),
}
Expand description

Small-storage-optimized implementation of a map.

Stores elements in a small array up to a certain length and switches to HashMap when that length is exceeded.

Variants

Array(ArrayVec<(K, V), SSO_ARRAY_SIZE>)
Map(FxHashMap<K, V>)

Implementations

impl<K, V> SsoHashMap<K, V>[src]

pub fn new() -> Self[src]

Creates an empty SsoHashMap.

pub fn with_capacity(cap: usize) -> Self[src]

Creates an empty SsoHashMap with the specified capacity.

pub fn clear(&mut self)[src]

Clears the map, removing all key-value pairs. Keeps the allocated memory for reuse.

pub fn capacity(&self) -> usize[src]

Returns the number of elements the map can hold without reallocating.

pub fn len(&self) -> usize[src]

Returns the number of elements in the map.

pub fn is_empty(&self) -> bool[src]

Returns true if the map contains no elements.

pub fn iter(&self) -> <&Self as IntoIterator>::IntoIter[src]

An iterator visiting all key-value pairs in arbitrary order. The iterator element type is (&'a K, &'a V).

pub fn iter_mut(&mut self) -> impl Iterator<Item = (&K, &mut V)>[src]

An iterator visiting all key-value pairs in arbitrary order, with mutable references to the values. The iterator element type is (&'a K, &'a mut V).

pub fn keys(&self) -> impl Iterator<Item = &K>[src]

An iterator visiting all keys in arbitrary order. The iterator element type is &'a K.

pub fn values(&self) -> impl Iterator<Item = &V>[src]

An iterator visiting all values in arbitrary order. The iterator element type is &'a V.

pub fn values_mut(&mut self) -> impl Iterator<Item = &mut V>[src]

An iterator visiting all values mutably in arbitrary order. The iterator element type is &'a mut V.

pub fn drain(&mut self) -> impl Iterator<Item = (K, V)> + '_[src]

Clears the map, returning all key-value pairs as an iterator. Keeps the allocated memory for reuse.

impl<K: Eq + Hash, V> SsoHashMap<K, V>[src]

pub fn reserve(&mut self, additional: usize)[src]

Reserves capacity for at least additional more elements to be inserted in the SsoHashMap. The collection may reserve more space to avoid frequent reallocations.

pub fn shrink_to_fit(&mut self)[src]

Shrinks the capacity of the map as much as possible. It will drop down as much as possible while maintaining the internal rules and possibly leaving some space in accordance with the resize policy.

pub fn retain<F>(&mut self, f: F) where
    F: FnMut(&K, &mut V) -> bool
[src]

Retains only the elements specified by the predicate.

pub fn insert(&mut self, key: K, value: V) -> Option<V>[src]

Inserts a key-value pair into the map.

If the map did not have this key present, None is returned.

If the map did have this key present, the value is updated, and the old value is returned. The key is not updated, though; this matters for types that can be == without being identical. See the [module-level documentation] for more.

pub fn remove(&mut self, key: &K) -> Option<V>[src]

Removes a key from the map, returning the value at the key if the key was previously in the map.

pub fn remove_entry(&mut self, key: &K) -> Option<(K, V)>[src]

Removes a key from the map, returning the stored key and value if the key was previously in the map.

pub fn get(&self, key: &K) -> Option<&V>[src]

Returns a reference to the value corresponding to the key.

pub fn get_mut(&mut self, key: &K) -> Option<&mut V>[src]

Returns a mutable reference to the value corresponding to the key.

pub fn get_key_value(&self, key: &K) -> Option<(&K, &V)>[src]

Returns the key-value pair corresponding to the supplied key.

pub fn contains_key(&self, key: &K) -> bool[src]

Returns true if the map contains a value for the specified key.

pub fn entry(&mut self, key: K) -> Entry<'_, K, V>[src]

Gets the given key’s corresponding entry in the map for in-place manipulation.

Trait Implementations

impl<K: Clone, V: Clone> Clone for SsoHashMap<K, V>[src]

fn clone(&self) -> SsoHashMap<K, V>[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<K, V> Debug for SsoHashMap<K, V> where
    K: Debug,
    V: Debug
[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl<K, V> Default for SsoHashMap<K, V>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl<'a, K, V> Extend<(&'a K, &'a V)> for SsoHashMap<K, V> where
    K: Eq + Hash + Copy,
    V: Copy
[src]

fn extend<T: IntoIterator<Item = (&'a K, &'a V)>>(&mut self, iter: T)[src]

Extends a collection with the contents of an iterator. Read more

fn extend_one(&mut self, (k, v): (&'a K, &'a V))[src]

🔬 This is a nightly-only experimental API. (extend_one)

Extends a collection with exactly one element.

fn extend_reserve(&mut self, additional: usize)[src]

🔬 This is a nightly-only experimental API. (extend_one)

Reserves capacity in a collection for the given number of additional elements. Read more

impl<K: Eq + Hash, V> Extend<(K, V)> for SsoHashMap<K, V>[src]

fn extend<I>(&mut self, iter: I) where
    I: IntoIterator<Item = (K, V)>, 
[src]

Extends a collection with the contents of an iterator. Read more

fn extend_one(&mut self, (k, v): (K, V))[src]

🔬 This is a nightly-only experimental API. (extend_one)

Extends a collection with exactly one element.

fn extend_reserve(&mut self, additional: usize)[src]

🔬 This is a nightly-only experimental API. (extend_one)

Reserves capacity in a collection for the given number of additional elements. Read more

impl<K: Eq + Hash, V> FromIterator<(K, V)> for SsoHashMap<K, V>[src]

fn from_iter<I: IntoIterator<Item = (K, V)>>(iter: I) -> SsoHashMap<K, V>[src]

Creates a value from an iterator. Read more

impl<'a, K, V> Index<&'a K> for SsoHashMap<K, V> where
    K: Eq + Hash
[src]

type Output = V

The returned type after indexing.

fn index(&self, key: &K) -> &V[src]

Performs the indexing (container[index]) operation. Read more

impl<K, V> IntoIterator for SsoHashMap<K, V>[src]

type IntoIter = EitherIter<<ArrayVec<(K, V), 8> as IntoIterator>::IntoIter, <FxHashMap<K, V> as IntoIterator>::IntoIter>

Which kind of iterator are we turning this into?

type Item = <Self::IntoIter as Iterator>::Item

The type of the elements being iterated over.

fn into_iter(self) -> Self::IntoIter[src]

Creates an iterator from a value. Read more

impl<'a, K, V> IntoIterator for &'a SsoHashMap<K, V>[src]

type IntoIter = EitherIter<Map<<&'a ArrayVec<(K, V), 8> as IntoIterator>::IntoIter, fn(_: &'a (K, V)) -> (&'a K, &'a V)>, <&'a FxHashMap<K, V> as IntoIterator>::IntoIter>

Which kind of iterator are we turning this into?

type Item = <Self::IntoIter as Iterator>::Item

The type of the elements being iterated over.

fn into_iter(self) -> Self::IntoIter[src]

Creates an iterator from a value. Read more

impl<'a, K, V> IntoIterator for &'a mut SsoHashMap<K, V>[src]

type IntoIter = EitherIter<Map<<&'a mut ArrayVec<(K, V), 8> as IntoIterator>::IntoIter, fn(_: &'a mut (K, V)) -> (&'a K, &'a mut V)>, <&'a mut FxHashMap<K, V> as IntoIterator>::IntoIter>

Which kind of iterator are we turning this into?

type Item = <Self::IntoIter as Iterator>::Item

The type of the elements being iterated over.

fn into_iter(self) -> Self::IntoIter[src]

Creates an iterator from a value. Read more

Auto Trait Implementations

impl<K, V> RefUnwindSafe for SsoHashMap<K, V> where
    K: RefUnwindSafe,
    V: RefUnwindSafe

impl<K, V> Send for SsoHashMap<K, V> where
    K: Send,
    V: Send

impl<K, V> Sync for SsoHashMap<K, V> where
    K: Sync,
    V: Sync

impl<K, V> Unpin for SsoHashMap<K, V> where
    K: Unpin,
    V: Unpin

impl<K, V> UnwindSafe for SsoHashMap<K, V> where
    K: UnwindSafe,
    V: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

pub fn vzip(self) -> V

impl<'a, T> Captures<'a> for T where
    T: ?Sized
[src]

impl<T> Erased for T[src]