strsim-rs icon indicating copy to clipboard operation
strsim-rs copied to clipboard

:abc: Rust implementations of string similarity metrics

Results 14 strsim-rs issues
Sort by recently updated
recently updated
newest added

please don't request breaking them into separate pull requests, that would be horrendous :) I have no yet found time to review with respect to https://github.com/dguo/strsim-rs/pull/30

Since we only need to iterate over the bigrams for each string once, we can create them lazily instead of collecting them into a string. This reduces the binary size...

A couple of places ranges like the following `0..(end + 1)` which can be expressed as `0..=end`. This is generally more readable. However I noticed this can lead to larger...