//! Levenshtein distance
/// This `struct` is used to access the normalized Levenshtein algorithm, as
/// implemented by Danny Guo's [strsim](https://crates.io/crates/strsim) crate,
/// in a generic manner.
;
/// This `Metric` trait implementation is used to access the normalized
/// Levenshtein algorithm, as implemented by Danny Guo's
/// [strsim](https://crates.io/crates/strsim) crate, in a generic manner.
// impl