Tree

Type Alias Tree 

Source
pub type Tree<'a, T> = TreeInner<Node<'a, T>, DefaultSorter>;
Expand description

TreeInner type with default node and sorter.

Aliased Type§

pub struct Tree<'a, T> { /* private fields */ }

Implementations§

Source§

impl<'a, T: Aabb> Tree<'a, T>

Source

pub fn assert_tree_invariants(&self)
where T::Num: Debug,

panics if a broken broccoli tree invariant is detected. For debugging purposes only.