(typ interface{}, names ...string)
| 25 | } |
| 26 | |
| 27 | func IgnoreFields(typ interface{}, names ...string) cmp.Option { |
| 28 | return cmpopts.IgnoreFields(typ, names...) |
| 29 | } |
| 30 | |
| 31 | func SortSlices(lessFunc interface{}) cmp.Option { |
| 32 | return cmpopts.SortSlices(lessFunc) |
no outgoing calls