예제 #1
0
 public SpellChecker(Checksum checksum, IEnumerable <ReadOnlyMemory <char> > corpus)
     : this(checksum, BKTree.Create(corpus))
 {
 }
예제 #2
0
 public SpellChecker(VersionStamp version, IEnumerable <StringSlice> corpus)
     : this(version, BKTree.Create(corpus))
 {
 }
예제 #3
0
 public SpellChecker(Checksum checksum, IEnumerable <StringSlice> corpus)
     : this(checksum, BKTree.Create(corpus))
 {
 }
예제 #4
0
 public SpellChecker(IEnumerable <string> corpus) : this(BKTree.Create(corpus))
 {
 }