| 335 | uint32_t Get(CachedTypes::Type t) const { return m_types[static_cast<size_t>(t)]; } |
| 336 | |
| 337 | bool IsHighway(uint32_t t) const |
| 338 | { |
| 339 | ftype::TruncValue(t, 1); |
| 340 | return t == Get(Highway); |
| 341 | } |
| 342 | |
| 343 | bool IsTransporter(uint32_t t) const |
| 344 | { |
no test coverage detected