Trait extemp::determinism::IntoDFA [] [src]

pub trait IntoDFA {
    fn dfa(self) -> Result<Automaton>;
}

Trait for converting an NFA into a DFA

Required Methods

Convert the automaton from an NFA into a DFA.

Errors

May return an Error::Automaton if there is a problem with the automaton that prevents it from being converted into a DFA.

Implementors