Struct radix_trie::Trie [−][src]
pub struct Trie<K, V> { /* fields omitted */ }
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
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.
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.
Insert the given key-value pair, returning any previous value associated with the key.
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.
Get a mutable reference to the value stored at this node, if any.
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.
pub fn subtrie_mut<'a, Q: ?Sized>(
&'a mut self,
key: &Q
) -> Option<SubTrieMut<'a, K, V>> where
K: Borrow<Q>,
Q: TrieKey,
pub fn subtrie_mut<'a, Q: ?Sized>(
&'a mut self,
key: &Q
) -> Option<SubTrieMut<'a, K, V>> where
K: Borrow<Q>,
Q: TrieKey,
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.
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.
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.
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
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
Take a function f
and apply it to the value stored at key
.
If no value is stored at key
, store default
.
Trait Implementations
Return an iterator over the child subtries of this node.
Return an iterator over the keys and values of the Trie.
Return an iterator over the keys of the Trie.
Return an iterator over the values of the Trie.
Auto Trait Implementations
impl<K, V> RefUnwindSafe for Trie<K, V> where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> UnwindSafe for Trie<K, V> where
K: UnwindSafe,
V: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more