-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStemmer.mli
More file actions
16 lines (13 loc) · 746 Bytes
/
Stemmer.mli
File metadata and controls
16 lines (13 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(***********************************************************************)
(* *)
(* MLMatcher *)
(* *)
(* Jakub Kosinski (jakub.kosinski@ghandal.net) *)
(* *)
(***********************************************************************)
(** Porter stemmer for english language.
@author Martin Porter (ANSI C implementation)
@author Jakub Kosinski (OCaml wrapper)
*)
external stem : string -> string = "porter"
(** [Stemmer.stem s] returns stem for [s]. *)