| 373 | } |
| 374 | |
| 375 | void TFeaturesLayout::IgnoreExternalFeature(ui32 externalFeatureIdx) noexcept { |
| 376 | if (externalFeatureIdx >= ExternalIdxToMetaInfo.size()) { |
| 377 | return; |
| 378 | } |
| 379 | |
| 380 | auto& metaInfo = ExternalIdxToMetaInfo[externalFeatureIdx]; |
| 381 | metaInfo.IsIgnored = true; |
| 382 | metaInfo.IsAvailable = false; |
| 383 | } |
| 384 | |
| 385 | void TFeaturesLayout::IgnoreExternalFeatures(TConstArrayRef<ui32> ignoredFeatures) noexcept { |
| 386 | for (auto ignoredFeature : ignoredFeatures) { |
no test coverage detected