1
2
3
4
5
6
7
8
9
10
11
12
pub mod buf;

mod cowvec;

pub mod err;
pub mod index;
pub mod matches;

pub use buf::{segment::SegStr, SegBuffer};
pub use err::Result;
pub use index::LineIndex;
pub use matches::LineSet;