regular-expression 0.1.0

A library for parsing, compiling, and executing regular expressions.
Documentation
#[macro_use]
mod util;
mod re; 
mod grammar;

pub use crate::re::Re;
pub use regular_expression_bootstrap::{
    Expression,
    sym,
    neg,
    alt,
    con,
    rep,
    ast,
    plu,
    que,
    sgl,
    rng,
    all,
};