static
| 179 | |
| 180 | // static |
| 181 | void SearchRankTableBuilder::CalcSearchRanks(FilesContainerR & rcont, vector<uint8_t> & ranks) |
| 182 | { |
| 183 | feature::DataHeader header(rcont); |
| 184 | FeaturesVector featuresVector(rcont, header, nullptr, nullptr, nullptr); |
| 185 | |
| 186 | featuresVector.ForEach([&ranks](FeatureType & ft, uint32_t /* index */) { ranks.push_back(CalcSearchRank(ft)); }); |
| 187 | } |
| 188 | |
| 189 | // static |
| 190 | bool SearchRankTableBuilder::CreateIfNotExists(string const & mapPath) noexcept |
nothing calls this directly
no test coverage detected