packages feed

fuzzystrmatch-pg-0.1.0.0: src/Data/FuzzyStrMatch.hs

{- |
Module      : Data.FuzzyStrMatch
Description : Export all string matching functions
Copyright   : (c) 2026 Taimoor Zaeem
License     : MIT
Maintainer  : Taimoor Zaeem <taimoorzaeem@gmail.com>
Stability   : Experimental
Portability : Portable

Determine string similarities and distance
-}
module Data.FuzzyStrMatch
  (
  -- * API
    levenshtein
  , levenshteinWithCosts
  , levenshteinLessEqual
  , levenshteinLessEqualWithCosts
  )
  where

import Data.FuzzyStrMatch.Levenshtein