namespace ZeroLevel.Services.Semantic { /// /// Performs word conversion to abstract word basis (root, stem, lemma, etc.) /// public interface ILexer { string Lex(string word); } }