| 412 | } |
| 413 | |
| 414 | void NCB::TObjectsDataProvider::SetTimestamps(TConstArrayRef<ui64> timestamps) { |
| 415 | CheckDataSize(timestamps.size(), (size_t)GetObjectCount(), "timestamps"); |
| 416 | CommonData.Timestamp.ConstructInPlace(TVector<ui64>(timestamps.begin(), timestamps.end())); |
| 417 | } |
| 418 | |
| 419 | TIntrusivePtr<TObjectsDataProvider> NCB::TObjectsDataProvider::GetFeaturesSubset( |
| 420 | const TVector<ui32>& ignoredFeatures, |
no test coverage detected