pub trait PathsIterator<'a> {
    type W: Semiring;
    type Iter: Iterator<Item = Path<Self::W>>;

    fn paths_iter(&'a self) -> Self::Iter;
}
Expand description

Trait to iterate over the paths accepted by an FST

Required Associated Types

Required Methods

Implementors