wasBayesSharp – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System.Collections.Generic;
2  
3 namespace BayesSharp.Tokenizers
4 {
5 /// <summary>
6 /// Break a string in a serie of string tokens
7 /// </summary>
8 public interface ITokenizer<out TTokenType>
9 {
10 /// <param name="input">String to be broken</param>
11 IEnumerable<TTokenType> Tokenize(object input);
12 }
13 }