| 13 | } |
| 14 | |
| 15 | void IDictionary::GetTokens(TConstArrayRef<TTokenId> tokenIds, TVector<TString>* tokens) const { |
| 16 | tokens->clear(); |
| 17 | tokens->reserve(tokenIds.size()); |
| 18 | for (auto tokenId : tokenIds) { |
| 19 | tokens->emplace_back(GetToken(tokenId)); |
| 20 | } |
| 21 | } |
nothing calls this directly
no test coverage detected