| 26 | } |
| 27 | |
| 28 | inline const TEncoderConstructor* FindEncoder(TStringBuf name) const { |
| 29 | if (auto codec = Codecs_.FindPtr(name)) { |
| 30 | return &codec->Encoder; |
| 31 | } |
| 32 | |
| 33 | return nullptr; |
| 34 | } |
| 35 | |
| 36 | inline TArrayRef<const TStringBuf> GetBestCodecs() const { |
| 37 | return BestCodecs_; |
no test coverage detected