| 713 | // clang-format on |
| 714 | |
| 715 | bool operator<(const String &o) const { |
| 716 | return StringLessThan(this->data(), this->size(), o.data(), o.size()); |
| 717 | } |
| 718 | }; |
| 719 | |
| 720 | // Convenience function to get std::string from a String returning an empty |
nothing calls this directly
no test coverage detected