1 2 3 4 5 6 7 8 9 10
pub mod duplicate; pub mod hashed_file; pub mod indexed_file; pub mod line_range; pub mod raw_file; pub type LineNumber = usize; pub type Filename = String; pub type Line = String; pub type Lines = Vec<Line>;