úÎ~ Safe4Included in the return type of  and R. Contains the original value given, the rendered string and the matching score.lReturns the rendered output and the matching score for a pattern and a text. Two examples are given below:$match "fnt" "infinite" "" "" id TrueJust ("infinite",3).match "hsk" ("Haskell",1995) "<" ">" fst FalseJust ("<h>a<s><k>ell",5)XThe function to filter a list of values by fuzzy search on the text extracted from them.Sfilter "ML" [("Standard ML", 1990),("OCaml",1996),("Scala",2003)] "<" ">" fst False—[Fuzzy {original = ("Standard ML",1990), rendered = "standard <m><l>", score = 4},Fuzzy {original = ("OCaml",1996), rendered = "oca<m><l>", score = 4}]©Return all elements of the list that have a fuzzy match against the pattern. Runs with default settings where nothing is added around the matches, as case insensitive.5simpleFilter "vm" ["vim", "emacs", "virtual machine"]["vim","virtual machine"]WReturns false if the pattern and the text do not match at all. Returns true otherwise.test "brd" "bread"True Pattern.+The value containing the text to search in."The text to add before each match.!The text to add after each match.4The function to extract the text from the container.Case sensitivity..The original value, rendered string and score.Pattern.4The list of values containing the text to search in."The text to add before each match.!The text to add after each match.4The function to extract the text from the container.Case sensitivity.1The list of results, sorted, highest score first.Pattern to look for.List of texts to check.The ones that match.    fuzzy_JJZyg7GmyWY6bzReVQPiqx Text.FuzzyFuzzyoriginalrenderedscorematchfilter simpleFiltertest