pub fn fuzzy_match_contextual(target: &str, query: &str) -> Option<usize>Expand description
Fuzzy match a string against a query string. Returns a score that is higher for
a more confident match, or None if the query does not match the target string.
Same algorithm as fuzzy_match_single but with extra heuristics based on
word boundaries and match offsets.