using System.Collections.Generic; namespace BayesSharp.Tokenizers { /// /// Break a string in a serie of string tokens /// public interface ITokenizer { /// String to be broken IEnumerable Tokenize(object input); } }