skimple 1.0.0

A simple interface for the skim fuzzy-matcher
Documentation

❖ skimple

skimple is a simple interface for skim fuzzy-matcher

❖ Examples

use skimple::SkimpleMatcher;

let matcher = SkimpleMatcher::default();
let haystack = ["Mort", "Sourcery", "Wyrd Sisters", "Pyramids", "Guards! Guards!"];
let needle = "gards";

let result = matcher.fuzzy(&haystack, &needle);
assert_eq!(result, Ok("Guards! Guards!"));

❖ What's New?

1.0.0 - Initial Release