pub fn try_levenshtein_weight(
    a: &str,
    b: &str,
    limit: u32,
    weights: &LevWeights
) -> Option<u32>
Expand description

The same algorithm as levenshtein_weight but return an Option to indicate if the limit is exceeded