Struct elsa::map::FrozenBTreeMap
source · pub struct FrozenBTreeMap<K, V> { /* private fields */ }
Expand description
Append-only version of std::collections::BTreeMap
where
insertion does not require mutable access
Implementations§
source§impl<K: Clone + Ord, V: StableDeref> FrozenBTreeMap<K, V>
impl<K: Clone + Ord, V: StableDeref> FrozenBTreeMap<K, V>
source§impl<K: Clone + Ord, V: StableDeref> FrozenBTreeMap<K, V>
impl<K: Clone + Ord, V: StableDeref> FrozenBTreeMap<K, V>
pub fn insert(&self, k: K, v: V) -> &V::Target
sourcepub fn get<Q>(&self, k: &Q) -> Option<&V::Target>
pub fn get<Q>(&self, k: &Q) -> Option<&V::Target>
Returns a reference to the value corresponding to the key.
The key may be any borrowed form of the map’s key type, but
Hash
and Eq
on the borrowed form must match those for
the key type.
Examples
use elsa::FrozenBTreeMap;
let map = FrozenBTreeMap::new();
map.insert(1, Box::new("a"));
assert_eq!(map.get(&1), Some(&"a"));
assert_eq!(map.get(&2), None);
sourcepub fn map_get<Q, T, F>(&self, k: &Q, f: F) -> Option<T>
pub fn map_get<Q, T, F>(&self, k: &Q, f: F) -> Option<T>
Applies a function to the owner of the value corresponding to the key (if any).
The key may be any borrowed form of the map’s key type, but
Hash
and Eq
on the borrowed form must match those for
the key type.
Examples
use elsa::FrozenBTreeMap;
let map = FrozenBTreeMap::new();
map.insert(1, Box::new("a"));
assert_eq!(map.map_get(&1, Clone::clone), Some(Box::new("a")));
assert_eq!(map.map_get(&2, Clone::clone), None);
source§impl<K, V> FrozenBTreeMap<K, V>
impl<K, V> FrozenBTreeMap<K, V>
sourcepub fn into_tuple_vec(self) -> Vec<(K, V)>
pub fn into_tuple_vec(self) -> Vec<(K, V)>
Collects the contents of this map into a vector of tuples.
The order of the entries is as if iterating a BTreeMap
(ordered by key).
Examples
use elsa::FrozenBTreeMap;
let map = FrozenBTreeMap::new();
map.insert(1, Box::new("a"));
map.insert(2, Box::new("b"));
let mut tuple_vec = map.into_tuple_vec();
tuple_vec.sort();
assert_eq!(tuple_vec, vec![(1, Box::new("a")), (2, Box::new("b"))]);
pub fn into_map(self) -> BTreeMap<K, V>
Trait Implementations§
source§impl<K, V> AsMut<BTreeMap<K, V>> for FrozenBTreeMap<K, V>
impl<K, V> AsMut<BTreeMap<K, V>> for FrozenBTreeMap<K, V>
source§impl<K: Clone + Ord, V: StableDeref> Default for FrozenBTreeMap<K, V>
impl<K: Clone + Ord, V: StableDeref> Default for FrozenBTreeMap<K, V>
source§impl<K: Clone + Ord, V: StableDeref> From<BTreeMap<K, V>> for FrozenBTreeMap<K, V>
impl<K: Clone + Ord, V: StableDeref> From<BTreeMap<K, V>> for FrozenBTreeMap<K, V>
source§impl<K: Clone + Ord, V: StableDeref> FromIterator<(K, V)> for FrozenBTreeMap<K, V>
impl<K: Clone + Ord, V: StableDeref> FromIterator<(K, V)> for FrozenBTreeMap<K, V>
source§impl<Q, K, V> Index<&Q> for FrozenBTreeMap<K, V>
impl<Q, K, V> Index<&Q> for FrozenBTreeMap<K, V>
Auto Trait Implementations§
impl<K, V> !RefUnwindSafe for FrozenBTreeMap<K, V>
impl<K, V> Send for FrozenBTreeMap<K, V>
impl<K, V> !Sync for FrozenBTreeMap<K, V>
impl<K, V> Unpin for FrozenBTreeMap<K, V>
impl<K, V> UnwindSafe for FrozenBTreeMap<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
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