| 888 | } |
| 889 | |
| 890 | bool FeatureType::HasMetadata(feature::Metadata::EType type) |
| 891 | { |
| 892 | ParseMetaIds(); |
| 893 | if (m_metadata.Has(type)) |
| 894 | return true; |
| 895 | |
| 896 | return base::FindIf(m_metaIds, [&type](auto const & v) { return v.first == type; }) != m_metaIds.end(); |
| 897 | } |
| 898 | |
| 899 | FeatureType::RelationIDsV const & FeatureType::GetRelations() |
| 900 | { |
no test coverage detected