pub trait ArcIterator<'a>: CoreFstwhere
    Self::W: 'a,
{ type Iter: Iterator<Item = &'a Arc<Self::W>> + Clone; fn arcs_iter(&'a self, _: &StateId) -> Result<Self::Iter, Error>; }
Expand description

Trait to iterate over the outgoing arcs of a partical state in a wFST

Required Associated Types

Iterator used to iterate over the arcs leaving a state of an FST.

Required Methods

Implementors