| 866 | } |
| 867 | |
| 868 | bool Geocoder::CityHasPostcode(BaseContext const & ctx) const |
| 869 | { |
| 870 | if (!ctx.m_city) |
| 871 | return false; |
| 872 | |
| 873 | return m_postcodes.Has(ctx.m_city->GetFeatureIndex(), ctx.m_city->m_featureId.IsWorld()); |
| 874 | } |
| 875 | |
| 876 | template <typename Fn> |
| 877 | void Geocoder::ForEachCountry(ExtendedMwmInfos const & extendedInfos, Fn && fn) |
nothing calls this directly
no test coverage detected