gregex_logic/translation/
operator.rs

1//! Contains the `Operator` enum.
2
3/// The `Operator` enum represents the different operations that can be performed on a regular expression.
4#[derive(Debug, PartialEq, Eq)]
5pub enum Operator {
6    Or,
7    Concat,
8    Production,
9    Plus,
10    Question,
11}