| 175 | } // namespace |
| 176 | |
| 177 | int BytesValue::Compare(absl::string_view bytes) const { |
| 178 | return NativeValue([bytes](const auto& alternative) -> int { |
| 179 | return CompareImpl(alternative, bytes); |
| 180 | }); |
| 181 | } |
| 182 | |
| 183 | int BytesValue::Compare(const absl::Cord& bytes) const { |
| 184 | return NativeValue([&bytes](const auto& alternative) -> int { |
no test coverage detected