diff --git a/indexer/feature_data.cpp b/indexer/feature_data.cpp index e0ab7f1d4e..c403b344bd 100644 --- a/indexer/feature_data.cpp +++ b/indexer/feature_data.cpp @@ -541,6 +541,17 @@ bool FeatureParams::IsTypeExist(uint32_t t) const return (find(m_types.begin(), m_types.end(), t) != m_types.end()); } +bool FeatureParams::IsTypeExist(uint32_t comp, uint8_t level) const +{ + for (uint32_t type : m_types) + { + ftype::TruncValue(type, level); + if (type == comp) + return true; + } + return false; +} + uint32_t FeatureParams::FindType(uint32_t comp, uint8_t level) const { for (uint32_t const type : m_types) diff --git a/indexer/feature_data.hpp b/indexer/feature_data.hpp index 1f3e57f3e2..e71c7f3407 100644 --- a/indexer/feature_data.hpp +++ b/indexer/feature_data.hpp @@ -280,6 +280,7 @@ public: bool PopAnyType(uint32_t & t); bool PopExactType(uint32_t t); bool IsTypeExist(uint32_t t) const; + bool IsTypeExist(uint32_t comp, uint8_t level) const; /// Find type that matches "comp" with "level" in classificator hierarchy. uint32_t FindType(uint32_t comp, uint8_t level) const;