gregex-logic 0.1.1

Logic for the gregex crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Contains the `Operator` enum.

/// The `Operator` enum represents the different operations that can be performed on a regular expression.
#[derive(Debug, PartialEq, Eq)]
pub enum Operator {
    Or,
    Concat,
    Production,
    Plus,
    Question,
}