/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
yt/cpp/mapreduce/interface/cypress.cpp
24 строки
640 B
Anton Myagkov
Update ydb version to 24.4 (#4579)
07 фев 2026, 11:59
Не верифицирован
07 фев 2026, 11:59
2c21cae
Код
Авторство
О чём код?
#include "cypress.h" #include "config.h" namespace NYT { //////////////////////////////////////////////////////////////////////////////// void ICypressClient::Concatenate( const TVector<TYPath>& sourcePaths, const TYPath& destinationPath, const TConcatenateOptions& options) { TVector<TRichYPath> richSourcePaths; richSourcePaths.reserve(sourcePaths.size()); for (const auto& path : sourcePaths) { richSourcePaths.emplace_back(path); } Concatenate(richSourcePaths, destinationPath, options); } //////////////////////////////////////////////////////////////////////////////// } // namespace NYT