1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
extern crate regex;

mod slice;
mod conv;
mod cmp;
pub mod pattern;
mod matching;

/// An OMG-WTF-8 string.
pub struct OmgWtf8([u8]);

pub use matching::MatchExt;