| 424 | } |
| 425 | |
| 426 | bool operator==(const ParsedJsonMapValue& lhs, const ParsedJsonMapValue& rhs) { |
| 427 | if (cel::to_address(lhs.value_) == cel::to_address(rhs.value_)) { |
| 428 | return true; |
| 429 | } |
| 430 | if (cel::to_address(lhs.value_) == nullptr) { |
| 431 | return rhs.IsEmpty(); |
| 432 | } |
| 433 | if (cel::to_address(rhs.value_) == nullptr) { |
| 434 | return lhs.IsEmpty(); |
| 435 | } |
| 436 | return internal::JsonMapEquals(*lhs.value_, *rhs.value_); |
| 437 | } |
| 438 | |
| 439 | } // namespace cel |
nothing calls this directly
no test coverage detected