| 81 | } |
| 82 | |
| 83 | std::string_view GetRefForID(const StringViewID id) const |
| 84 | { |
| 85 | if (id == INVALID_STRINGVIEWID) |
| 86 | return {}; |
| 87 | |
| 88 | const constexpr auto OFFSET_REF = 3u; |
| 89 | return indexed_data.at(id + OFFSET_REF); |
| 90 | } |
| 91 | |
| 92 | std::string_view GetPronunciationForID(const StringViewID id) const |
| 93 | { |
no test coverage detected