Trait extemp::determinism::IntoDFA
[−]
[src]
pub trait IntoDFA {
fn dfa(self) -> Result<Automaton>;
}Trait for converting an NFA into a DFA
Required Methods
fn dfa(self) -> Result<Automaton>
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.