rustfst 0.3.0

Library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs).
Documentation
use crate::algorithms::FactorIterator;
use crate::semirings::Semiring;
use std::marker::PhantomData;

/// Trivial factor. Doesn't factor anything.
pub struct IdentityFactor<W> {
    ghost: PhantomData<W>,
}

impl<W: Semiring> FactorIterator<W> for IdentityFactor<W> {
    fn new(_weight: W) -> Self {
        Self { ghost: PhantomData }
    }

    fn done(&self) -> bool {
        true
    }
}

impl<W: Semiring> Iterator for IdentityFactor<W> {
    type Item = (W, W);

    fn next(&mut self) -> Option<Self::Item> {
        None
    }
}