| 85 | } |
| 86 | |
| 87 | std::vector<SuggestItem> SymSpell::LookUp(const std::string &input) { |
| 88 | return LookUp(input, _maxDictionaryEditDistance); |
| 89 | } |
| 90 | |
| 91 | std::vector<SuggestItem> SymSpell::LookUp(const std::string &input, int maxEditDistance) { |
| 92 | if (_strategy == Strategy::LazyLoaded) { |
no test coverage detected