(x, y float64)
| 404 | } |
| 405 | |
| 406 | func equalFloat64(x, y float64) bool { |
| 407 | return x == y || (math.IsNaN(x) && math.IsNaN(y)) |
| 408 | } |
| 409 | |
| 410 | // IgnoreEmptyMessages ignores messages that are empty or unpopulated. |
| 411 | // It applies to standalone [Message] values, singular message fields, |