[][src]Trait finite_automata::StatesSlice

pub trait StatesSlice<S> {
    fn states_slice<'a>(
        &'a self,
        state_indices: impl IntoIterator<Item = StateIndex> + 'a
    ) -> Box<dyn Iterator<Item = &S> + 'a>; }

Required methods

fn states_slice<'a>(
    &'a self,
    state_indices: impl IntoIterator<Item = StateIndex> + 'a
) -> Box<dyn Iterator<Item = &S> + 'a>

Convert the state indices to states.

Loading content...

Implementors

impl<S: Ord, T: Ord> StatesSlice<S> for Dfa<S, T>[src]

impl<S: Ord, T: Ord> StatesSlice<S> for Enfa<S, T>[src]

impl<S: Ord, T: Ord> StatesSlice<S> for Nfa<S, T>[src]

Loading content...