Struct compt::DownT [] [src]

pub struct DownT<'a, T: 'a> { /* fields omitted */ }

Tree visitor that returns a reference to each element in the tree.

Trait Implementations

impl<'a, T: 'a> CTreeIterator for DownT<'a, T>
[src]

[src]

Consume this visitor, and produce the element it was pointing to along with it's children visitors. Read more

[src]

Combine two tree visitors.

[src]

Calls the closure in dfs preorder (left,right,root).

[src]

Calls the closure in dfs postorder (right,left,root).