| 7 | namespace NCB { |
| 8 | |
| 9 | THolder<ILineDataReader> GetLineDataReader(const TPathWithScheme& pathWithScheme, |
| 10 | const TDsvFormatOptions& format, |
| 11 | bool keepLineOrder) |
| 12 | { |
| 13 | return GetProcessor<ILineDataReader, TLineDataReaderArgs>( |
| 14 | pathWithScheme, TLineDataReaderArgs{pathWithScheme, format, keepLineOrder} |
| 15 | ); |
| 16 | } |
| 17 | |
| 18 | int CountLines(const TString& poolFile) { |
| 19 | CB_ENSURE(NFs::Exists(TString(poolFile)), "pool file '" << TString(poolFile) << "' is not found"); |
no outgoing calls
no test coverage detected