Trait StatesIndex

Source
pub trait StatesIndex<S> {
    // Required method
    fn states_index(&self, state_index: StateIndex) -> &S;
}

Required Methods§

Source

fn states_index(&self, state_index: StateIndex) -> &S

Get the state at the state index.

Implementors§

Source§

impl<S: Ord, T: Ord> StatesIndex<S> for Dfa<S, T>

Source§

impl<S: Ord, T: Ord> StatesIndex<S> for Enfa<S, T>

Source§

impl<S: Ord, T: Ord> StatesIndex<S> for Nfa<S, T>