Represents the type of a single character.
- lower: Lean.FuzzyMatching.CharType
- upper: Lean.FuzzyMatching.CharType
- separator: Lean.FuzzyMatching.CharType
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Represents the role of a character inside a word.
- head: Lean.FuzzyMatching.CharRole
- tail: Lean.FuzzyMatching.CharRole
- separator: Lean.FuzzyMatching.CharRole
Instances For
@[inline]
def
Lean.FuzzyMatching.charRole
(prev? : Option Lean.FuzzyMatching.CharType)
(curr : Lean.FuzzyMatching.CharType)
(next? : Option Lean.FuzzyMatching.CharType)
:
Equations
- One or more equations did not get rendered due to their size.
Instances For
Match the given pattern with the given word using a fuzzy matching
algorithm. The resulting scores are in the interval [0, 1]
or none
if no
match was found.
Equations
- One or more equations did not get rendered due to their size.
Instances For
def
Lean.FuzzyMatching.fuzzyMatchScoreWithThreshold?
(pattern : String)
(word : String)
(threshold : optParam Float 0.1)
:
Equations
- Lean.FuzzyMatching.fuzzyMatchScoreWithThreshold? pattern word threshold = Option.filter (fun (x : Float) => decide (x > threshold)) (Lean.FuzzyMatching.fuzzyMatchScore? pattern word)
Instances For
def
Lean.FuzzyMatching.fuzzyMatch
(pattern : String)
(word : String)
(threshold : optParam Float 0.2)
:
Match the given pattern with the given word using a fuzzy matching
algorithm. Return false
if no match was found or the found match received a
score below the given threshold.
Equations
- Lean.FuzzyMatching.fuzzyMatch pattern word threshold = (Lean.FuzzyMatching.fuzzyMatchScoreWithThreshold? pattern word threshold).isSome