Return true iff both interfaces are equal.
(x, y interface{})
| 27 | |
| 28 | // Return true iff both interfaces are equal. |
| 29 | func interfaceEqual(x, y interface{}) bool { |
| 30 | return reflectValueEqual(reflectlite.ValueOf(x), reflectlite.ValueOf(y)) |
| 31 | } |
| 32 | |
| 33 | func reflectValueEqual(x, y reflectlite.Value) bool { |
| 34 | // Note: doing a x.Type() == y.Type() comparison would not work here as that |
nothing calls this directly
no test coverage detected