pub trait Walkable<C, A, S> where
    C: Compound<A, S>, 
{ fn probe(&self, ofs: usize) -> Discriminant<'_, C::Leaf, A>; }
Expand description

Wrapper trait provided to Walkers

Required methods

Probe the location of the tree being walked

Implementors