automata_core 0.2.0

Deterministic and nondeterministic automata algorithms in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! Re-exports [`SimpleLabeledDFAState`](crate::labeled::simple::SimpleLabeledDFAState) /
//! [`SimpleLabeledNFAState`](crate::labeled::simple::SimpleLabeledNFAState) for the unlabeled aliases.

use crate::labeled::simple::SimpleLabeledDFAState;
use crate::labeled::simple::SimpleLabeledNFAState;

/// [`SimpleDFA`](crate::simple::SimpleDFA) state index.
pub type SimpleDFAState = SimpleLabeledDFAState;
/// [`SimpleNFA`](crate::simple::SimpleNFA) state index.
pub type SimpleNFAState = SimpleLabeledNFAState;