| 126 | } |
| 127 | |
| 128 | type mapSorter struct { |
| 129 | in reflect.Type // T |
| 130 | fnc reflect.Value // func(T, T) bool |
| 131 | } |
| 132 | |
| 133 | func (ms mapSorter) filter(x, y interface{}) bool { |
| 134 | vx, vy := reflect.ValueOf(x), reflect.ValueOf(y) |
nothing calls this directly
no outgoing calls
no test coverage detected