❖ skimple
skimple is a simple interface for skim fuzzy-matcher
❖ Examples
Best Match
use SkimpleMatcher;
let matcher = default;
let haystack = ;
let needle = "gards";
let result = matcher.fuzzy_best;
assert_eq!;
All Matches
use SkimpleMatcher;
let matcher = default;
let haystack = ;
let needle = "yr";
let result = matcher.fuzzy_all;
assert_eq!;
❖ What's New?
2.0.1 - Add feature to return all matches, and not just the best