| 638 | // clang-format on |
| 639 | |
| 640 | bool operator<(const String &o) const { |
| 641 | return StringLessThan(this->data(), this->size(), o.data(), o.size()); |
| 642 | } |
| 643 | }; |
| 644 | |
| 645 | // Convenience function to get std::string from a String returning an empty |
nothing calls this directly
no test coverage detected