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

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

Trait to iterate over the final states of a wFST

Required Associated Types

Required Methods

Implementors