pub struct KeyedVecSet<K, V> { /* private fields */ }Expand description
A vector-based map implementation which retains the order of inserted entries.
Internally it is represented as a Vec<(K, V)> to support keys that are neither Hash nor
Ord.
Implementations§
Source§impl<K, V> KeyedVecSet<K, V>
impl<K, V> KeyedVecSet<K, V>
Sourcepub const fn new() -> Self
pub const fn new() -> Self
Create a new map. (Does not allocate.)
§Examples
use vecset::KeyedVecSet;
let mut map: KeyedVecSet<i32, &str> = KeyedVecSet::new();Sourcepub fn with_capacity(capacity: usize) -> Self
pub fn with_capacity(capacity: usize) -> Self
Create a new map with capacity for capacity key-value pairs. (Does not allocate if
capacity is zero.)
§Examples
use vecset::KeyedVecSet;
let mut map: KeyedVecSet<i32, &str> = KeyedVecSet::with_capacity(10);
assert_eq!(map.len(), 0);
assert!(map.capacity() >= 10);Sourcepub fn capacity(&self) -> usize
pub fn capacity(&self) -> usize
Returns the number of entries the map can hold without reallocating.
§Examples
use vecset::KeyedVecSet;
let mut map: KeyedVecSet<i32, (i32, &str)> = KeyedVecSet::with_capacity(10);
assert_eq!(map.capacity(), 10);Sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Returns the number of entries in the map, also referred to as its ‘length’.
§Examples
use vecset::KeyedVecSet;
let mut a = KeyedVecSet::<u32, (u32, &str)>::new();
assert_eq!(a.len(), 0);
a.insert((1, "a"));
assert_eq!(a.len(), 1);Sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Returns true if the map contains no entries.
§Examples
use vecset::KeyedVecSet;
let mut a = KeyedVecSet::<i32, (i32, &str)>::new();
assert!(a.is_empty());
a.insert((1, "a"));
assert!(!a.is_empty());Sourcepub fn clear(&mut self)
pub fn clear(&mut self)
Clears the map, removing all entries.
§Examples
use vecset::KeyedVecSet;
let mut a = KeyedVecSet::<i32, (i32, &str)>::new();
a.insert((1, "a"));
a.clear();
assert!(a.is_empty());Sourcepub fn truncate(&mut self, len: usize)
pub fn truncate(&mut self, len: usize)
Shortens the map, keeping the first len key-value pairs and dropping the rest.
If len is greater than the map’s current length, this has no effect.
§Examples
Truncating a four element map to two elements:
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<&str, (&str, u32)>::from_iter([("a", 1), ("b", 2), ("c", 3), ("d", 4)]);
map.truncate(2);
assert_eq!(map, KeyedVecSet::<&str, (&str, u32)>::from_iter([("a", 1), ("b", 2)]));No truncation occurs when len is greater than the map’s current length:
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<&str, (&str, u32)>::from_iter([("a", 1), ("b", 2), ("c", 3), ("d", 4)]);
map.truncate(8);
assert_eq!(map, KeyedVecSet::<&str, (&str, u32)>::from_iter([("a", 1), ("b", 2), ("c", 3), ("d", 4)]));Sourcepub fn reserve(&mut self, additional: usize)
pub fn reserve(&mut self, additional: usize)
Reserves capacity for at least additional more elements to be inserted in the given
KeyedVecSet<K, V>. The collection may reserve more space to speculatively avoid frequent
reallocations. After calling reserve, capacity will be greater than or equal to
self.len() + additional. Does nothing if capacity is already sufficient.
§Panics
Panics if the new capacity exceeds isize::MAX bytes.
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<&str, (&str, u32)>::from_iter([("a", 1)]);
map.reserve(10);
assert!(map.capacity() >= 11);Sourcepub fn reserve_exact(&mut self, additional: usize)
pub fn reserve_exact(&mut self, additional: usize)
Reserves the minimum capacity for at least additional more elements to be inserted in
the given KeyedVecSet<K, V>. Does nothing if the capacity is already sufficient.
Note that the allocator may give the collection more space than it requests. Therefore,
capacity can not be relied upon to be precisely minimal. Prefer Self::reserve if future
insertions are expected.
§Panics
Panics if the new capacity exceeds isize::MAX bytes.
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<&str, (&str, u32)>::from_iter([("a", 1)]);
map.reserve_exact(10);
assert!(map.capacity() >= 11);Sourcepub fn retain<F>(&mut self, f: F)
pub fn retain<F>(&mut self, f: F)
Retains only the elements specified by the predicate.
In other words, remove all pairs (k, v) for which f(&k, &mut v) returns false.
§Examples
use vecset::KeyedVecSet;
let mut map: KeyedVecSet<i32, (i32, i32)> = (0..8).map(|x| (x, x*10)).collect();
map.retain(|&v| v.0 % 2 == 0);
assert_eq!(map.len(), 4);Sourcepub fn shrink_to_fit(&mut self)
pub fn shrink_to_fit(&mut self)
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.
§Examples
use vecset::KeyedVecSet;
let mut map: KeyedVecSet<i32, (i32, i32)> = KeyedVecSet::with_capacity(100);
map.insert((1, 2));
map.insert((3, 4));
assert!(map.capacity() >= 100);
map.shrink_to_fit();
assert!(map.capacity() >= 2);Sourcepub fn shrink_to(&mut self, min_capacity: usize)
pub fn shrink_to(&mut self, min_capacity: usize)
Shrinks the capacity of the map with a lower limit. It will drop down no lower than the supplied limit while maintaining the internal rules and possibly leaving some space in accordance with the resize policy.
If the current capacity is less than the lower limit, this is a no-op.
§Examples
use vecset::KeyedVecSet;
let mut map: KeyedVecSet<i32, (i32, i32)> = KeyedVecSet::with_capacity(100);
map.insert((1, 2));
map.insert((3, 4));
assert!(map.capacity() >= 100);
map.shrink_to(10);
assert!(map.capacity() >= 10);
map.shrink_to(0);
assert!(map.capacity() >= 2);Sourcepub fn split_off(&mut self, at: usize) -> KeyedVecSet<K, V>
pub fn split_off(&mut self, at: usize) -> KeyedVecSet<K, V>
Splits the map into two at the given index.
Returns a newly allocated map containing the key-value pairs in the range [at, len).
After the call, the original map will be left containing the key-value pairs [0, at)
with its previous capacity unchanged.
§Panics
Panics if at > len.
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<&str, (&str, u32)>::from_iter([("a", 1), ("b", 2), ("c", 3)]);
let map2 = map.split_off(1);
assert_eq!(map, KeyedVecSet::<&str, (&str, u32)>::from_iter([("a", 1)]));
assert_eq!(map2, KeyedVecSet::<&str, (&str, u32)>::from_iter([("b", 2), ("c", 3)]));Sourcepub fn drain<R>(&mut self, range: R) -> Drain<'_, V>where
R: RangeBounds<usize>,
pub fn drain<R>(&mut self, range: R) -> Drain<'_, V>where
R: RangeBounds<usize>,
Removes the specified range from the vector in bulk, returning all removed elements as an iterator. If the iterator is dropped before being fully consumed, it drops the remaining removed elements.
The returned iterator keeps a mutable borrow on the vector to optimize its implementation.
§Panics
Panics if the starting point is greater than the end point or if the end point is greater than the length of the vector.
§Examples
use vecset::KeyedVecSet;
let mut v = KeyedVecSet::<&str, (&str, i32)>::from_iter([("a", 1), ("b", 2), ("c", 3)]);
let u: KeyedVecSet<_, _> = v.drain(1..).collect();
assert_eq!(v, KeyedVecSet::<&str, (&str, i32)>::from([("a", 1)]));
assert_eq!(u, KeyedVecSet::<&str, (&str, i32)>::from([("b", 2), ("c", 3)]));
// A full range clears the vector, like `clear()` does
v.drain(..);
assert_eq!(v, KeyedVecSet::new());Sourcepub fn as_slice(&self) -> &[V]
pub fn as_slice(&self) -> &[V]
Extracts a slice containing the map entries.
use vecset::KeyedVecSet;
let map = KeyedVecSet::<&str, (&str, u32)>::from_iter([("b", 2), ("a", 1), ("c", 3)]);
let slice = map.as_slice();
assert_eq!(slice, [("a", 1), ("b", 2), ("c", 3)]);Sourcepub unsafe fn as_mut_slice(&mut self) -> &mut [V]
pub unsafe fn as_mut_slice(&mut self) -> &mut [V]
Extracts a slice containing the map entries.
§Safety
Changing key may cause the map to be unsorted or have duplicate keys. Those states will make KeyedVecSet working unspecified way.
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<&str, (&str, u32)>::from_iter([("b", 2), ("a", 1), ("c", 3)]);
let slice = unsafe {
let slice = map.as_mut_slice();
slice[0].1 = 10;
&*slice
};
assert_eq!(slice, [("a", 10), ("b", 2), ("c", 3)]);Sourcepub fn to_vec(&self) -> Vec<V>where
V: Clone,
pub fn to_vec(&self) -> Vec<V>where
V: Clone,
Copies the map entries into a new Vec<(K, V)>.
use vecset::KeyedVecSet;
let map = KeyedVecSet::<&str, (&str, u32)>::from_iter([("b", 2), ("a", 1), ("c", 3)]);
let vec = map.to_vec();
assert_eq!(vec, [("a", 1), ("b", 2), ("c", 3)]);
// Here, `map` and `vec` can be modified independently.Sourcepub fn into_vec(self) -> Vec<V>
pub fn into_vec(self) -> Vec<V>
Takes ownership of the map and returns its entries as a Vec<(K, V)>.
use vecset::KeyedVecSet;
let map = KeyedVecSet::<&str, (&str, i32)>::from([("b", 2), ("a", 1), ("c", 3)]);
let vec = map.into_vec();
assert_eq!(vec, [("a", 1), ("b", 2), ("c", 3)]);Sourcepub unsafe fn from_sorted_vec(base: Vec<V>) -> Self
pub unsafe fn from_sorted_vec(base: Vec<V>) -> Self
Takes ownership of provided vector and converts it into KeyedVecSet.
§Safety
The vector must be sorted and have no duplicate keys. One way to guarantee it is to
sort the vector (e.g. by using [T]::sort_by_key) and then drop
duplicate keys (e.g. by using Vec::dedup_by_key).
§Example
use vecset::KeyedVecSet;
let mut vec = vec![("b", 2), ("a", 1), ("c", 3), ("b", 4)];
vec.sort_by_key(|slot| slot.0);
vec.dedup_by_key(|slot| slot.0);
// SAFETY: We've just deduplicated the vector.
let map = unsafe { KeyedVecSet::from_sorted_vec(vec) };
assert_eq!(map, KeyedVecSet::<&str, (&str, i32)>::from([("b", 2), ("a", 1), ("c", 3)]));Source§impl<K, V> KeyedVecSet<K, V>
impl<K, V> KeyedVecSet<K, V>
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.
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<i32, (i32, &str)>::new();
map.insert((1, "a"));
assert_eq!(map.contains_key(&1), true);
assert_eq!(map.contains_key(&2), false);Sourcepub fn first(&self) -> Option<&V>
pub fn first(&self) -> Option<&V>
Get the first key-value pair.
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<&str, (&str, u32)>::from_iter([("a", 1), ("b", 2)]);
assert_eq!(map.first(), Some(&("a", 1)));Sourcepub unsafe fn first_mut(&mut self) -> Option<&mut V>
pub unsafe fn first_mut(&mut self) -> Option<&mut V>
Get the first key-value pair, with mutable access to the value.
§Safety
Changing key may cause the map to be unsorted or have duplicate keys. Those states will make KeyedVecSet working unspecified way.
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<&str, (&str, u32)>::from_iter([("a", 1), ("b", 2)]);
unsafe {
if let Some(v) = map.first_mut() {
v.1 = v.1 + 10;
}
}
assert_eq!(map.first(), Some(&("a", 11)));Sourcepub fn last(&self) -> Option<&V>
pub fn last(&self) -> Option<&V>
Get the last key-value pair.
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<&str, (&str, u32)>::from_iter([("a", 1), ("b", 2)]);
assert_eq!(map.last(), Some(&("b", 2)));
map.pop();
map.pop();
assert_eq!(map.last(), None);Sourcepub unsafe fn last_mut(&mut self) -> Option<&mut V>
pub unsafe fn last_mut(&mut self) -> Option<&mut V>
Get the last key-value pair, with mutable access to the value.
§Safety
Changing key may cause the map to be unsorted or have duplicate keys. Those states will make KeyedVecSet working unspecified way.
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<&str, (&str, u32)>::from_iter([("a", 1), ("b", 2)]);
unsafe {
if let Some(v) = map.last_mut() {
v.1 += 10;
}
}
assert_eq!(map.last(), Some(&("b", 12)));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.
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<i32, (i32, &str)>::new();
map.insert((1, "a"));
assert_eq!(map.get(&1), Some(&(1, "a")));
assert_eq!(map.get(&2), None);Sourcepub fn get_mut<Q>(&mut self, key: &Q) -> Option<&mut V>
pub fn get_mut<Q>(&mut self, key: &Q) -> Option<&mut V>
Return a mutable reference to the value stored for key, if it is present, else None.
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<i32, (i32, &str)>::new();
map.insert((1, "a"));
if let Some(x) = map.get_mut(&1) {
x.1 = "b";
}
assert_eq!(map[&1], (1, "b"));Sourcepub fn get_index(&self, index: usize) -> Option<&V>
pub fn get_index(&self, index: usize) -> Option<&V>
Return references to the key-value pair stored at index, if it is present, else None.
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<i32, (i32, &str)>::new();
map.insert((1, "a"));
assert_eq!(map.get_index(0), Some(&(1, "a")));
assert_eq!(map.get_index(1), None);Sourcepub unsafe fn get_index_mut(&mut self, index: usize) -> Option<&mut V>
pub unsafe fn get_index_mut(&mut self, index: usize) -> Option<&mut V>
Return a reference to the key and a mutable reference to the value stored at index, if it
is present, else None.
§Safety
Changing key may cause the map to be unsorted or have duplicate keys. Those states will make KeyedVecSet working unspecified way.
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<i32, (i32, &str)>::new();
map.insert((1, "a"));
unsafe {
if let Some((_, v)) = map.get_index_mut(0) {
*v = "b";
}
}
assert_eq!(map[0].1, "b");Sourcepub unsafe fn get_unchecked(&self, index: usize) -> &V
pub unsafe fn get_unchecked(&self, index: usize) -> &V
Sourcepub unsafe fn get_unchecked_mut(&mut self, index: usize) -> &mut V
pub unsafe fn get_unchecked_mut(&mut self, index: usize) -> &mut V
Returns a mutable reference to an element or subslice, without doing bounds checking.
For a safe alternative see get_index_mut.
§Safety
Calling this method with an out-of-bounds index is [undefined behavior] even if the resulting reference is not used.
Sourcepub fn get_full<Q>(&self, key: &Q) -> Result<(usize, &V), usize>
pub fn get_full<Q>(&self, key: &Q) -> Result<(usize, &V), usize>
Return the index and references to the key-value pair stored for key, if it is present,
else None.
§Errors
Returns the index where the key would be inserted if it doesn’t exist.
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<i32, (i32, &str)>::new();
map.insert((1, "a"));
assert_eq!(map.get_full(&1), Ok((0, &(1, "a"))));
assert_eq!(map.get_full(&2), Err(1));Sourcepub unsafe fn get_full_mut<Q>(
&mut self,
key: &Q,
) -> Result<(usize, &mut V), usize>
pub unsafe fn get_full_mut<Q>( &mut self, key: &Q, ) -> Result<(usize, &mut V), usize>
Return the index, a reference to the key and a mutable reference to the value stored for
key, if it is present, else None.
§Safety
Changing key may cause the map to be unsorted or have duplicate keys. Those states will make KeyedVecSet working unspecified way.
§Errors
Returns the index where the key would be inserted if it doesn’t exist.
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<i32, (i32, &str)>::new();
map.insert((1, "a"));
unsafe {
if let Ok((_, v)) = map.get_full_mut(&1) {
v.1 = "b";
}
}
assert_eq!(map.get(&1), Some(&(1, "b")));Sourcepub fn binary_search<Q>(&self, key: &Q) -> Result<usize, usize>
pub fn binary_search<Q>(&self, key: &Q) -> Result<usize, usize>
Return item index, if it exists in the map.
§Errors
Returns the index where the key would be inserted if it doesn’t exist.
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<&str, (&str, i32)>::new();
map.insert(("a", 10));
map.insert(("b", 20));
assert_eq!(map.binary_search("a"), Ok(0));
assert_eq!(map.binary_search("b"), Ok(1));
assert_eq!(map.binary_search("c"), Err(2));Source§impl<K, V> KeyedVecSet<K, V>
impl<K, V> KeyedVecSet<K, V>
Sourcepub fn pop(&mut self) -> Option<V>
pub fn pop(&mut self) -> Option<V>
Removes the last element from the map and returns it, or None if it
is empty.
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<&str, (&str, u32)>::from_iter([("a", 1), ("b", 2)]);
assert_eq!(map.pop(), Some(("b", 2)));
assert_eq!(map.pop(), Some(("a", 1)));
assert!(map.is_empty());
assert_eq!(map.pop(), None);Sourcepub fn remove<Q>(&mut self, key: &Q) -> Option<V>
pub fn 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!
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<u32, (u32, &str)>::from_iter([(1, "a"), (2, "b"), (3, "c"), (4, "d")]);
assert_eq!(map.remove(&2), Some((2, "b")));
assert_eq!(map.remove(&2), None);
assert_eq!(map, KeyedVecSet::<u32, (u32, &str)>::from([(1, "a"), (3, "c"), (4, "d")]));Sourcepub fn remove_index(&mut self, index: usize) -> V
pub fn remove_index(&mut self, index: usize) -> V
Removes and returns the key-value pair at position index within the map, shifting all
elements after it to the left.
§Panics
Panics if index is out of bounds.
§Examples
use vecset::KeyedVecSet;
let mut v = KeyedVecSet::<&str, (&str, u32)>::from_iter([("a", 1), ("b", 2), ("c", 3)]);
assert_eq!(v.remove_index(1), ("b", 2));
assert_eq!(v, KeyedVecSet::<&str, (&str, u32)>::from_iter([("a", 1), ("c", 3)]));Source§impl<K, V> KeyedVecSet<K, V>
impl<K, V> KeyedVecSet<K, V>
Sourcepub fn insert(&mut self, value: V) -> Option<V>
pub fn insert(&mut self, 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.
See also entry if you want to insert or modify or if you need to
get the index of the corresponding key-value pair.
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<i32, (i32, &str)>::new();
assert_eq!(map.insert((37, "a")), None);
assert_eq!(map.is_empty(), false);
map.insert((37, "b"));
assert_eq!(map.insert((37, "c")), Some((37, "b")));
assert_eq!(map[&37].1, "c");Sourcepub fn insert_index(&mut self, index: usize, value: V)
pub fn insert_index(&mut self, index: usize, value: V)
Insert a key-value pair at the given index.
§Panics
Panics if:
index > len()- The key already exists at a different position
- The insertion would break the sorted order
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<&str, (&str, i32)>::new();
map.insert_index(0, ("b", 2));
map.insert_index(1, ("c", 3));
map.insert_index(0, ("a", 1));
assert_eq!(map["a"].1, 1);
assert_eq!(map["b"].1, 2);
assert_eq!(map["c"].1, 3);Sourcepub unsafe fn insert_index_unchecked(&mut self, index: usize, value: V)
pub unsafe fn insert_index_unchecked(&mut self, index: usize, value: V)
Insert a key-value pair in the map without sorting validation.
The given index must be vacant.
See also replace_index_unchecked if you want to replace
existing slot.
§Safety
The caller must ensure that inserting the value at the given index maintains the sorted order. Failing to do so may result in a map with unsorted keys or duplicate keys.
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<&str, (&str, i32)>::new();
unsafe {
map.insert_index_unchecked(0, ("b", 2));
map.insert_index_unchecked(1, ("c", 3));
map.insert_index_unchecked(0, ("a", 1));
}
assert_eq!(map["b"].1, 2);Sourcepub fn replace_index(&mut self, index: usize, value: V) -> V
pub fn replace_index(&mut self, index: usize, value: V) -> V
Replace a key-value pair at the given index.
§Panics
Panics if:
index >= len()- The new key is different from the existing key at that index
- The replacement would break the sorted order
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<&str, (&str, i32)>::from([("a", 10), ("b", 20), ("c", 30)]);
let replaced = map.replace_index(1, ("b", 15));
assert_eq!(replaced.1, 20);
assert_eq!(map["b"].1, 15);Sourcepub unsafe fn replace_index_unchecked(&mut self, index: usize, value: V) -> V
pub unsafe fn replace_index_unchecked(&mut self, index: usize, value: V) -> V
Replace a key-value pair in the map without sorting validation.
The given index must be occupied.
See also insert_index_unchecked if you want to insert
a new key-value pair.
§Safety
The caller must ensure that the new value has the same key as the existing value at the given index and that the replacement maintains the sorted order. Failing to do so may result in a map with unsorted keys or duplicate keys.
§Examples
use vecset::KeyedVecSet;
let mut map = unsafe { KeyedVecSet::<&str, (&str, i32)>::from_sorted_vec(vec![("a", 10), ("b", 20), ("c", 30)]) };
let replaced = unsafe { map.replace_index_unchecked(1, ("b", 15)) };
assert_eq!(replaced.1, 20);
assert_eq!(map["b"].1, 15);Sourcepub fn insert_full(&mut self, value: V) -> (usize, Option<V>)
pub fn insert_full(&mut self, 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.
See also entry if you want to insert or modify
or if you need to get the index of the corresponding key-value pair.
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<&str, (&str, i32)>::new();
assert_eq!(map.insert_full(("a", 1)), (0, None));
assert_eq!(map.insert_full(("b", 2)), (1, None));
assert_eq!(map.insert_full(("b", 3)), (1, Some(("b", 2))));
assert_eq!(map["b"].1, 3);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.
§Examples
use vecset::KeyedVecSet;
let mut letters = KeyedVecSet::<char, (char, usize)>::new();
for ch in "a short treatise on fungi".chars() {
unsafe { letters.entry(ch).and_modify(|pair| pair.1 += 1) }.or_insert((ch, 1));
}
assert_eq!(letters[&'s'].1, 2);
assert_eq!(letters[&'t'].1, 3);
assert_eq!(letters[&'u'].1, 1);
assert_eq!(letters.get(&'y'), None);Sourcepub unsafe fn entry_index_unchecked(
&mut self,
index: Result<usize, usize>,
key: K,
) -> Entry<'_, K, V>
pub unsafe fn entry_index_unchecked( &mut self, index: Result<usize, usize>, key: K, ) -> Entry<'_, K, V>
Get the entry in the map for insertion and/or in-place
manipulation by given index and key. The index must be a valid result of Self::binary_search.
§Safety
The caller must ensure that the provided index is a valid result of binary_search for the given key.
An incorrect index may lead to undefined behavior.
§Examples
use vecset::KeyedVecSet;
let mut letters = KeyedVecSet::<char, (char, usize)>::new();
for ch in "a short treatise on fungi".chars() {
unsafe { letters.entry(ch).and_modify(|pair| pair.1 += 1) }.or_insert((ch, 1));
}
assert_eq!(letters[&'s'].1, 2);
assert_eq!(letters[&'t'].1, 3);
assert_eq!(letters[&'u'].1, 1);
assert_eq!(letters.get(&'y'), None);Source§impl<K, V: Keyed<K>> KeyedVecSet<K, V>
impl<K, V: Keyed<K>> KeyedVecSet<K, V>
Sourcepub fn iter(&self) -> Iter<'_, V>
pub fn iter(&self) -> Iter<'_, V>
An iterator visiting all key-value pairs in insertion order. The iterator element type is
(&'a K, &'a V).
§Examples
use vecset::KeyedVecSet;
let map = KeyedVecSet::<&str, (&str, i32)>::from([
("a", 1),
("b", 2),
("c", 3),
]);
for (key, val) in map.iter() {
println!("key: {key} val: {val}");
}Sourcepub unsafe fn iter_mut(&mut self) -> impl Iterator<Item = &mut V>
pub unsafe fn iter_mut(&mut self) -> impl Iterator<Item = &mut V>
An iterator visiting all key-value pairs in insertion order, with mutable references to the
values. The iterator element type is (&'a K, &'a mut V).
§Safety
Changing key may cause the map to be unsorted or have duplicate keys. Those states will make KeyedVecSet working unspecified way.
§Examples
use vecset::KeyedVecSet;
let mut map = KeyedVecSet::<&str, (&str, i32)>::from([
("a", 1),
("b", 2),
("c", 3),
]);
// Update all values
unsafe {
for (_, val) in map.iter_mut() {
*val *= 2;
}
}
for (key, val) in &map {
println!("key: {key} val: {val}");
}Sourcepub fn keys(&self) -> impl Iterator<Item = &K> + '_
pub fn keys(&self) -> impl Iterator<Item = &K> + '_
An iterator visiting all keys in insertion order. The iterator element type is &'a K.
§Examples
use vecset::KeyedVecSet;
let map = KeyedVecSet::<&str, (&str, i32)>::from([
("a", 1),
("b", 2),
("c", 3),
]);
for key in map.keys() {
println!("{key}");
}Trait Implementations§
Source§impl<K: Clone, V: Clone> Clone for KeyedVecSet<K, V>
impl<K: Clone, V: Clone> Clone for KeyedVecSet<K, V>
Source§fn clone(&self) -> KeyedVecSet<K, V>
fn clone(&self) -> KeyedVecSet<K, V>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<K, V> Default for KeyedVecSet<K, V>
impl<K, V> Default for KeyedVecSet<K, V>
Source§impl<'de, K, V> Deserialize<'de> for KeyedVecSet<K, V>
Available on crate feature serde only.
impl<'de, K, V> Deserialize<'de> for KeyedVecSet<K, V>
serde only.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> Extend<&'a V> for KeyedVecSet<K, V>
impl<'a, K, V> Extend<&'a V> for KeyedVecSet<K, V>
Source§fn extend<I>(&mut self, iterable: I)where
I: IntoIterator<Item = &'a V>,
fn extend<I>(&mut self, iterable: I)where
I: IntoIterator<Item = &'a V>,
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> Extend<V> for KeyedVecSet<K, V>
impl<K, V> Extend<V> for KeyedVecSet<K, V>
Source§fn extend<I>(&mut self, iterable: I)where
I: IntoIterator<Item = V>,
fn extend<I>(&mut self, iterable: I)where
I: IntoIterator<Item = V>,
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> From<&[V]> for KeyedVecSet<K, V>
impl<K, V> From<&[V]> for KeyedVecSet<K, V>
Source§impl<K, V> From<&mut [V]> for KeyedVecSet<K, V>
impl<K, V> From<&mut [V]> for KeyedVecSet<K, V>
Source§impl<K, V> From<Vec<V>> for KeyedVecSet<K, V>
impl<K, V> From<Vec<V>> for KeyedVecSet<K, V>
Source§impl<Item, K, V> FromIterator<Item> for KeyedVecSet<K, V>where
Self: Extend<Item>,
impl<Item, K, V> FromIterator<Item> for KeyedVecSet<K, V>where
Self: Extend<Item>,
Source§fn from_iter<I: IntoIterator<Item = Item>>(iter: I) -> Self
fn from_iter<I: IntoIterator<Item = Item>>(iter: I) -> Self
Source§impl<K, V, Q> Index<&Q> for KeyedVecSet<K, V>
impl<K, V, Q> Index<&Q> for KeyedVecSet<K, V>
Source§impl<K, V> Index<usize> for KeyedVecSet<K, V>
impl<K, V> Index<usize> for KeyedVecSet<K, V>
Source§impl<'de, K, V, E> IntoDeserializer<'de, E> for KeyedVecSet<K, V>
Available on crate feature serde only.
impl<'de, K, V, E> IntoDeserializer<'de, E> for KeyedVecSet<K, V>
serde only.Source§type Deserializer = SeqDeserializer<<KeyedVecSet<K, V> as IntoIterator>::IntoIter, E>
type Deserializer = SeqDeserializer<<KeyedVecSet<K, V> as IntoIterator>::IntoIter, E>
Source§fn into_deserializer(self) -> Self::Deserializer
fn into_deserializer(self) -> Self::Deserializer
Source§impl<'a, K, V> IntoIterator for &'a KeyedVecSet<K, V>
impl<'a, K, V> IntoIterator for &'a KeyedVecSet<K, V>
Source§impl<'a, K, V> IntoIterator for &'a mut KeyedVecSet<K, V>
impl<'a, K, V> IntoIterator for &'a mut KeyedVecSet<K, V>
Source§impl<K, V> IntoIterator for KeyedVecSet<K, V>
impl<K, V> IntoIterator for KeyedVecSet<K, V>
Source§impl<K, V> PartialEq for KeyedVecSet<K, V>where
V: PartialEq,
impl<K, V> PartialEq for KeyedVecSet<K, V>where
V: PartialEq,
Source§impl<K, V> Serialize for KeyedVecSet<K, V>
Available on crate feature serde only.
impl<K, V> Serialize for KeyedVecSet<K, V>
serde only.