howudoin::flat_tree

Struct FlatTree

Source
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>
where K: Clone + Eq + Ord,

Source

pub fn get<Q>(&self, k: &Q) -> Option<&V>
where K: Borrow<Q>, Q: Eq + Ord,

Get a node’s value using the key.

Source

pub fn get_mut<Q>(&mut self, k: &Q) -> Option<&mut V>
where K: Borrow<Q>, Q: Eq + Ord,

Get a node’s value (mutable reference) using the key.

Source

pub fn insert_root(&mut self, k: K, v: V) -> Option<V>

Insert a root node.

Source

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.

Source

pub fn remove<Q>(&mut self, k: &Q) -> Option<V>
where K: Borrow<Q>, Q: Eq + Ord,

Remove a node with the key.

Source

pub fn contains_node<Q>(&self, k: &Q) -> bool
where K: Borrow<Q>, Q: Eq + Ord,

Does the structure contain a node with the key.

Source

pub fn is_root<Q>(&self, k: &Q) -> bool
where K: Borrow<Q>, Q: Eq + Ord,

Check if a key is a root node.

Source

pub fn roots(&self) -> impl Iterator<Item = (&K, &V)>

An iterator over the roots, fetching the nodes’ values.

Trait Implementations§

Source§

impl<K, V> Default for FlatTree<K, V>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<K, V> Freeze for FlatTree<K, V>

§

impl<K, V> RefUnwindSafe for FlatTree<K, V>

§

impl<K, V> Send for FlatTree<K, V>
where K: Send, V: Send,

§

impl<K, V> Sync for FlatTree<K, V>
where K: Sync, V: Sync,

§

impl<K, V> Unpin for FlatTree<K, V>

§

impl<K, V> UnwindSafe for FlatTree<K, V>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.