| 1366 | |
| 1367 | |
| 1368 | void NCB::TExclusiveFeatureBundlesData::Save( |
| 1369 | NPar::ILocalExecutor* localExecutor, |
| 1370 | IBinSaver* binSaver |
| 1371 | ) const { |
| 1372 | Y_ASSERT(!binSaver->IsReading()); |
| 1373 | Y_ASSERT(MetaData.size() == SrcData.size()); |
| 1374 | |
| 1375 | SaveMulti( |
| 1376 | binSaver, |
| 1377 | FlatFeatureIndexToBundlePart, |
| 1378 | MetaData |
| 1379 | ); |
| 1380 | |
| 1381 | for (const auto& srcDataElement : SrcData) { |
| 1382 | SaveColumnData(*srcDataElement, localExecutor, binSaver); |
| 1383 | } |
| 1384 | } |
| 1385 | |
| 1386 | |
| 1387 | void NCB::TExclusiveFeatureBundlesData::Load( |
no test coverage detected