| 1470 | } |
| 1471 | |
| 1472 | struct StringRef { |
| 1473 | const char* ptr; |
| 1474 | uint16_t len; |
| 1475 | std::string str() const { return std::string(ptr, len); } |
| 1476 | bool operator==(const StringRef& o) const { return len == o.len && memcmp(ptr, o.ptr, len) == 0; } |
| 1477 | }; |
| 1478 | |
| 1479 | struct VocabEntry { |
| 1480 | const char* str; |