package levenshtein
-
levenshtein
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Levenshtein distance algorithm for general array.
Author: jun.furuse@gmail.com License: public domain
module type Array = sig ... end
Generic array type.
module type S = sig ... end
Simple implementation without cache
module type Cache = sig ... end
Cache
module CacheByHashtbl (H : Hashtbl.HashedType) : Cache with type key = H.t
Build a cache using OCaml stdlib's Hashtbl
module type WithCache = sig ... end
module StringWithHashtbl : WithCache with type t = string
Sample implementation for String, using OCaml stdlib's Hashtbl as a cache