Struct radix_trie::Trie
source · pub struct Trie<K, V> { /* private fields */ }
Expand description
Data-structure for storing and querying string-like keys and associated values.
Any keys which share a common prefix are stored below a single copy of that prefix. This saves space, and also allows the longest prefix of any given key to be found.
You can read more about Radix Tries on Wikipedia.
Lots of the methods on Trie
return optional values - they can be composed
nicely using Option::and_then
.
Implementations§
source§impl<K, V> Trie<K, V>where
K: TrieKey,
impl<K, V> Trie<K, V>where
K: TrieKey,
sourcepub fn get<Q>(&self, key: &Q) -> Option<&V>
pub fn get<Q>(&self, key: &Q) -> Option<&V>
Fetch a reference to the given key’s corresponding value, if any.
The key may be any borrowed form of the trie’s key type, but TrieKey on the borrowed form must match those for the key type.
sourcepub fn get_mut<Q>(&mut self, key: &Q) -> Option<&mut V>
pub fn get_mut<Q>(&mut self, key: &Q) -> Option<&mut V>
Fetch a mutable reference to the given key’s corresponding value, if any.
The key may be any borrowed form of the trie’s key type, but TrieKey on the borrowed form must match those for the key type.
sourcepub fn insert(&mut self, key: K, value: V) -> Option<V>
pub fn insert(&mut self, key: K, value: V) -> Option<V>
Insert the given key-value pair, returning any previous value associated with the key.
sourcepub fn remove<Q>(&mut self, key: &Q) -> Option<V>
pub fn remove<Q>(&mut self, key: &Q) -> Option<V>
Remove the value associated with the given key.
The key may be any borrowed form of the trie’s key type, but TrieKey on the borrowed form must match those for the key type.
sourcepub fn value_mut(&mut self) -> Option<&mut V>
pub fn value_mut(&mut self) -> Option<&mut V>
Get a mutable reference to the value stored at this node, if any.
sourcepub fn subtrie<'a, Q>(&'a self, key: &Q) -> Option<SubTrie<'a, K, V>>
pub fn subtrie<'a, Q>(&'a self, key: &Q) -> Option<SubTrie<'a, K, V>>
Fetch a reference to the subtrie for a given key.
The key may be any borrowed form of the trie’s key type, but TrieKey on the borrowed form must match those for the key type.
sourcepub fn subtrie_mut<'a, Q>(&'a mut self, key: &Q) -> Option<SubTrieMut<'a, K, V>>
pub fn subtrie_mut<'a, Q>(&'a mut self, key: &Q) -> Option<SubTrieMut<'a, K, V>>
Fetch a mutable reference to the subtrie for a given key.
The key may be any borrowed form of the trie’s key type, but TrieKey on the borrowed form must match those for the key type.
sourcepub fn get_ancestor<'a, Q>(&'a self, key: &Q) -> Option<SubTrie<'a, K, V>>
pub fn get_ancestor<'a, Q>(&'a self, key: &Q) -> Option<SubTrie<'a, K, V>>
Fetch a reference to the closest ancestor node of the given key.
If key
is encoded as byte-vector b
, return the node n
in the tree
such that n
’s key’s byte-vector is the longest possible prefix of b
, and n
has a value.
Invariant: result.is_some() => result.key_value.is_some()
.
The key may be any borrowed form of the trie’s key type, but TrieKey on the borrowed form must match those for the key type.
sourcepub fn get_ancestor_value<Q>(&self, key: &Q) -> Option<&V>
pub fn get_ancestor_value<Q>(&self, key: &Q) -> Option<&V>
Fetch the closest ancestor value for a given key.
See get_ancestor
for precise semantics, this is just a shortcut.
The key may be any borrowed form of the trie’s key type, but TrieKey on the borrowed form must match those for the key type.
sourcepub fn get_raw_ancestor<'a, Q>(&'a self, key: &Q) -> SubTrie<'a, K, V>
pub fn get_raw_ancestor<'a, Q>(&'a self, key: &Q) -> SubTrie<'a, K, V>
The key may be any borrowed form of the trie’s key type, but TrieKey on the borrowed form must match those for the key type
sourcepub fn get_raw_descendant<'a, Q>(&'a self, key: &Q) -> Option<SubTrie<'a, K, V>>
pub fn get_raw_descendant<'a, Q>(&'a self, key: &Q) -> Option<SubTrie<'a, K, V>>
Fetch the closest descendant for a given key.
If the key is in the trie, this is the same as subtrie
.
The key may be any borrowed form of the trie’s key type, but TrieKey on the borrowed form must match those for the key type
sourcepub fn map_with_default<F>(&mut self, key: K, f: F, default: V)
pub fn map_with_default<F>(&mut self, key: K, f: F, default: V)
Take a function f
and apply it to the value stored at key
.
If no value is stored at key
, store default
.
Trait Implementations§
source§impl<K, V> PartialEq for Trie<K, V>
impl<K, V> PartialEq for Trie<K, V>
Auto Trait Implementations§
impl<K, V> Freeze for Trie<K, V>
impl<K, V> RefUnwindSafe for Trie<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for Trie<K, V>
impl<K, V> Sync for Trie<K, V>
impl<K, V> Unpin for Trie<K, V>
impl<K, V> UnwindSafe for Trie<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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)