Modules§
Structs§
- FstDictionary
- An immutable dictionary allowing for very fast spellchecking.
- Fuzzy
Match Result - Merged
Dictionary - A simple wrapper over
Dictionary
that allows one to merge multiple dictionaries without copying. - Mutable
Dictionary - A basic dictionary that allows words to be added after instantiating. This is useful for user and file dictionaries that may change at runtime.
Traits§
- Dictionary
- An in-memory database that contains everything necessary to parse and analyze English text.
Functions§
- suggest_
correct_ spelling - Get the closest matches in the provided
Dictionary
and rank them Implementation is left up to the underlying dictionary. - suggest_
correct_ spelling_ str - Convenience function over
suggest_correct_spelling
that does conversions for you.