| 40 | // clang-format on |
| 41 | |
| 42 | bool operator<(const String &o) const { |
| 43 | return StringLessThan(this->data(), this->size(), o.data(), o.size()); |
| 44 | } |
| 45 | }; |
| 46 | |
| 47 | // Convenience function to get std::string from a String returning an empty |
nothing calls this directly
no test coverage detected