| 349 | bool IsRailwayStation(uint32_t t) const { return t == Get(RailwayStation); } |
| 350 | |
| 351 | bool IsSubwayStation(uint32_t t) const |
| 352 | { |
| 353 | ftype::TruncValue(t, 3); |
| 354 | return t == Get(SubwayStation); |
| 355 | } |
| 356 | |
| 357 | private: |
| 358 | buffer_vector<uint32_t, static_cast<size_t>(Count)> m_types; |
no test coverage detected