# Functions
NewHamming returns a new Hamming string metric.
NewJaccard returns a new Jaccard string metric.
NewJaro returns a new Jaro string metric.
NewJaroWinkler returns a new Jaro-Winkler string metric.
NewLevenshtein returns a new Levenshtein string metric.
NewOverlapCoefficient returns a new overlap coefficient string metric.
NewSmithWatermanGotoh returns a new Smith-Waterman-Gotoh string metric.
NewSorensenDice returns a new Sorensen-Dice string metric.
# Structs
Hamming represents the Hamming metric for measuring the similarity between sequences.
Jaccard represents the Jaccard index for measuring the similarity between sequences.
Jaro represents the Jaro metric for measuring the similarity between sequences.
JaroWinkler represents the Jaro-Winkler metric for measuring the similarity between sequences.
Levenshtein represents the Levenshtein metric for measuring the similarity between sequences.
MatchMismatch represents a substitution function which returns the match or mismatch value depeding on the equality of the compared characters.
OverlapCoefficient represents the overlap coefficient for measuring the similarity between sequences.
SmithWatermanGotoh represents the Smith-Waterman-Gotoh metric for measuring the similarity between sequences.
SorensenDice represents the Sorensen-Dice metric for measuring the similarity between sequences.
# Interfaces
Substitution represents a substitution function which is used to calculate a score for character substitutions.