(a, b interface{}, opts ...cmp.Option)
| 13 | ) |
| 14 | |
| 15 | func Diff(a, b interface{}, opts ...cmp.Option) string { |
| 16 | return cmp.Diff(a, b, opts...) |
| 17 | } |
| 18 | |
| 19 | func IgnoreUnexported(types ...interface{}) cmp.Option { |
| 20 | return cmpopts.IgnoreUnexported(types...) |
no outgoing calls