Struct compt::Wrap [] [src]

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

Allows to traverse down from a visitor twice by creating a new visitor that borrows the other.

Methods

impl<'a, T: 'a> Wrap<'a, T>
[src]

[src]

Trait Implementations

impl<'a, T: 'a> CTreeIterator for Wrap<'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).