| 11 | } |
| 12 | |
| 13 | void TDictionaryProxy::Apply(TConstArrayRef<TStringBuf> tokens, TText* text) const { |
| 14 | TVector<ui32> tokenIds; |
| 15 | DictionaryImpl->Apply(tokens, &tokenIds); |
| 16 | *text = TText{std::move(tokenIds)}; |
| 17 | } |
| 18 | |
| 19 | ui32 TDictionaryProxy::Size() const { |
| 20 | return DictionaryImpl->Size(); |
no test coverage detected