Less implements sort.Interface.
(i, j int)
| 52 | |
| 53 | // Less implements sort.Interface. |
| 54 | func (f Fingerprints) Less(i, j int) bool { |
| 55 | return f[i] < f[j] |
| 56 | } |
| 57 | |
| 58 | // Swap implements sort.Interface. |
| 59 | func (f Fingerprints) Swap(i, j int) { |
nothing calls this directly
no outgoing calls
no test coverage detected