pub trait Walker<C, A, S> where
    C: Compound<A, S>, 
{ fn walk(&mut self, walk: impl Walkable<C, A, S>) -> Step; }
Expand description

The trait used to construct a Branch or to iterate through a tree.

Required Methods

Walk the tree node, returning the appropriate Step

Implementors