| 138 | } |
| 139 | |
| 140 | bool BytesValue::Equals(absl::string_view bytes) const { |
| 141 | return NativeValue([bytes](const auto& alternative) -> bool { |
| 142 | return alternative == bytes; |
| 143 | }); |
| 144 | } |
| 145 | |
| 146 | bool BytesValue::Equals(const absl::Cord& bytes) const { |
| 147 | return NativeValue([&bytes](const auto& alternative) -> bool { |