Apply more lints

This commit is contained in:
Andras Schmelczer 2024-12-18 22:14:09 +00:00
parent 0c92bf959b
commit 1e1dd7b877
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
24 changed files with 61 additions and 63 deletions

View file

@ -1,2 +0,0 @@
pub mod myers;
pub mod raw_operation;

View file

@ -1,4 +1,4 @@
//! Taken from https://github.com/mitsuhiko/similar/blob/7e15c44de11a1cd61e1149189929e189ef977fd8/src/algorithms/myers.rs
//! Taken from <https://github.com/mitsuhiko/similar/blob/7e15c44de11a1cd61e1149189929e189ef977fd8/src/algorithms/myers.rs>
//! Myers' diff algorithm.
//!
//! * time: `O((N+M)D)`

View file

@ -23,12 +23,10 @@ where
}
pub fn original_text_length(&self) -> usize {
self.tokens().iter().map(|t| t.get_original_length()).sum()
self.tokens().iter().map(Token::get_original_length).sum()
}
pub fn get_original_text(self) -> String {
self.tokens().iter().map(|t| t.original()).collect()
}
pub fn get_original_text(self) -> String { self.tokens().iter().map(Token::original).collect() }
/// Extends the operation with another operation if returning the new
/// operation. Only operations of the same type can be used to extend.