pub struct FlatTree<K, V> {
pub nodes: BTreeMap<K, V>,
pub roots: BTreeSet<K>,
}
Expand description
A common abstraction of a ‘flat’ tree which tracks the nodes with an ordered map and the set of root nodes.
Note that the data structures use ordered maps and sets which work well with the incrementing
crate::Id
key.
Fields§
§nodes: BTreeMap<K, V>
The nodes.
roots: BTreeSet<K>
The set of root nodes.
Implementations§
Source§impl<K, V> FlatTree<K, V>
impl<K, V> FlatTree<K, V>
Sourcepub fn get_mut<Q>(&mut self, k: &Q) -> Option<&mut V>
pub fn get_mut<Q>(&mut self, k: &Q) -> Option<&mut V>
Get a node’s value (mutable reference) using the key.
Sourcepub fn insert_root(&mut self, k: K, v: V) -> Option<V>
pub fn insert_root(&mut self, k: K, v: V) -> Option<V>
Insert a root node.
Sourcepub fn insert(&mut self, k: K, v: V) -> Option<V>
pub fn insert(&mut self, k: K, v: V) -> Option<V>
Insert a node.
If the node is a root node, insert_root
should be used.
Sourcepub fn contains_node<Q>(&self, k: &Q) -> bool
pub fn contains_node<Q>(&self, k: &Q) -> bool
Does the structure contain a node with the key.
Trait Implementations§
Auto Trait Implementations§
impl<K, V> Freeze for FlatTree<K, V>
impl<K, V> RefUnwindSafe for FlatTree<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for FlatTree<K, V>
impl<K, V> Sync for FlatTree<K, V>
impl<K, V> Unpin for FlatTree<K, V>
impl<K, V> UnwindSafe for FlatTree<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