README
A generic implementation of the Levenshtein distance that allows weighting operations.
Generic
This crate can work on slices of any kind. It can therefore:
- Compute a distance in characters between two strings:
assert_eq!;
- Compute a distance in words between two strings:
assert_eq!;
- Or even compute a distance between two sequences of anything:
assert_eq!;
Weighting
This crate allows defining custom weights for each operation on each symbol.