| 57 | StringTableImpl(IndexedData indexed_data_) : indexed_data{std::move(indexed_data_)} {} |
| 58 | |
| 59 | std::string_view GetNameForID(const StringViewID id) const |
| 60 | { |
| 61 | if (id == INVALID_STRINGVIEWID) |
| 62 | return {}; |
| 63 | |
| 64 | return indexed_data.at(id + 0); |
| 65 | } |
| 66 | |
| 67 | std::string_view GetDestinationsForID(const StringViewID id) const |
| 68 | { |
no test coverage detected