| 304 | } |
| 305 | |
| 306 | inline TString KeyByIndex(size_t n) const { |
| 307 | if (n < Count()) { |
| 308 | return Recs_[n]->Name(); |
| 309 | } |
| 310 | |
| 311 | ythrow yexception() << "incorrect index"; |
| 312 | } |
| 313 | |
| 314 | inline bool Has(const TStringBuf key) const { |
| 315 | return Dict_.contains(key); |