| 43 | } |
| 44 | |
| 45 | type sliceSorter struct { |
| 46 | in reflect.Type // T |
| 47 | fnc reflect.Value // func(T, T) bool |
| 48 | } |
| 49 | |
| 50 | func (ss sliceSorter) filter(x, y interface{}) bool { |
| 51 | vx, vy := reflect.ValueOf(x), reflect.ValueOf(y) |
nothing calls this directly
no outgoing calls
no test coverage detected