Struct compt::ZippedDownTMut [] [src]

pub struct ZippedDownTMut<T1: CTreeIterator, T2: CTreeIterator> { /* fields omitted */ }

Tree visitor that zips up two seperate visitors. If one of the iterators returns None for its children, this iterator will return None.

Trait Implementations

impl<T1: CTreeIterator, T2: CTreeIterator> CTreeIterator for ZippedDownTMut<T1, T2>
[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).