Go to the source code of this file.
|
class | liblevenshtein::Transducer< Type, Result > |
| Constructs a Levenshtein Transducer that, when given a dictionary automaton, query term, and maximum edit distance, n , is able to match all spelling candidates in the dictionary automaton for the query term whose edit distances are no larger than n . More...
|
|
|
namespace | liblevenshtein |
| Various utilities regarding Levenshtein transducers.
|
|
|
using | liblevenshtein::Candidate = std::pair<std::string, std::size_t> |
| Spelling candidate that includes both the dictionary term and its edit distance from the query term.
|
|