fuzzy-filter 0.1.0

A fast implementation (O(n)) of fuzzy-filtering.
Documentation
1
2
3
4
5
6
7
use fuzzy_filter::matches;

#[test]
fn test1() {
  assert_eq!(matches("ace", "abcde"), true);
  assert_eq!(matches("ace", "abcd"), false);
}