regular-expression-bootstrap 0.1.0

A library for compiling and executing regular expressions.
Documentation
1
2
3
4
5
6
7
8
macro_rules! set {
    ($($x:expr),*) => {{
        #[allow(unused_mut)]
        let mut temp_set = std::collections::BTreeSet::new();
        $(temp_set.insert($x);)*
        temp_set
    }}
}