| 228 | } |
| 229 | |
| 230 | absl::string_view ToStringView( |
| 231 | std::string* absl_nonnull scratch |
| 232 | ABSL_ATTRIBUTE_LIFETIME_BOUND) const ABSL_ATTRIBUTE_LIFETIME_BOUND { |
| 233 | return value_.ToStringView(scratch); |
| 234 | } |
| 235 | |
| 236 | friend bool operator<(const BytesValue& lhs, const BytesValue& rhs) { |
| 237 | return lhs.value_ < rhs.value_; |
nothing calls this directly
no test coverage detected