Packages

String metrics and phonetic algorithms for Elixir. Based Heavily on StringMetrics for Scala written by Rocky Madden.

Current section

Files

Jump to
the_fuzz lib the_fuzz string_metric.ex
Raw

lib/the_fuzz/string_metric.ex

defmodule TheFuzz.StringMetric do
@moduledoc """
Specifies the string metric api which an module needs to implement to provide
string comparison methods
"""
@callback compare(String.t(), String.t()) :: any
end