| 327 | } |
| 328 | |
| 329 | bool Validate(std::size_t count) override |
| 330 | { |
| 331 | decltype(this->Indexes) indexes; |
| 332 | |
| 333 | for (auto index : this->Indexes) { |
| 334 | indexes.push_back(this->NormalizeIndex(index, count)); |
| 335 | } |
| 336 | this->Indexes = std::move(indexes); |
| 337 | |
| 338 | return true; |
| 339 | } |
| 340 | }; |
| 341 | class TransformSelectorFor : public TransformSelectorIndexes |
| 342 | { |
nothing calls this directly
no test coverage detected