Struct ordermap::OrderMap [] [src]

pub struct OrderMap<K, V, S = RandomState> { /* fields omitted */ }

A hash map with consistent order of the key-value pairs.

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 same order.

Methods

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

impl<K, V, S> OrderMap<K, V, S>
[src]

impl<K, V, S> OrderMap<K, V, S> where K: Hash + Eq, S: BuildHasher
[src]

FIXME Entry API does not implement all hash map's methods yet.

FIXME Not implemented fully yet

Return an iterator over the keys of the map, in their order

Return an iterator over the key-value pairs of the map, in their order

Return an iterator over the key-value pairs of the map, in their order

Return item index, key and value

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 postion of what used to be the last element!

Return None if key is not in map.

FIXME Same as .swap_remove

Remove the key-value pair equivalent to key and return it.

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 postion of what used to be the last element!

Return None if key is not in map.

Remove the last key-value pair

impl<K, V, S> OrderMap<K, V, S>
[src]

Get a key-value pair by index

Valid indices are 0 <= index < self.len()

Get a key-value pair by index

Valid indices are 0 <= index < self.len()

Remove the key-value pair by index

Valid indices are 0 <= index < self.len()

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<K, V, S> Debug for OrderMap<K, V, S> where K: Debug + Hash + Eq, V: Debug, S: BuildHasher
[src]

Formats the value using the given formatter.

impl<'a, K, V, S> IntoIterator for &'a OrderMap<K, V, S> where K: Hash + Eq, S: BuildHasher
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl<'a, K, V, S> IntoIterator for &'a mut OrderMap<K, V, S> where K: Hash + Eq, S: BuildHasher
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl<K, V, S> IntoIterator for OrderMap<K, V, S> where K: Hash + Eq, S: BuildHasher
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl<'a, K, V, Q: ?Sized, S> Index<&'a Q> for OrderMap<K, V, S> where K: Eq + Hash, K: Borrow<Q>, Q: Eq + Hash, S: BuildHasher
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl<'a, K, V, Q: ?Sized, S> IndexMut<&'a Q> for OrderMap<K, V, S> where K: Eq + Hash, K: Borrow<Q>, Q: Eq + Hash, S: BuildHasher
[src]

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().

The method for the mutable indexing (container[index]) operation

impl<K, V, S> FromIterator<(K, V)> for OrderMap<K, V, S> where K: Hash + Eq, S: BuildHasher + Default
[src]

Creates a value from an iterator. Read more

impl<K, V, S> Extend<(K, V)> for OrderMap<K, V, S> where K: Hash + Eq, S: BuildHasher
[src]

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

impl<K, V, S> Default for OrderMap<K, V, S> where S: BuildHasher + Default
[src]

Returns the "default value" for a type. Read more