HashesSort sorts a slice of Hashes in increasing order.
(a []Hash)
| 61 | |
| 62 | // HashesSort sorts a slice of Hashes in increasing order. |
| 63 | func HashesSort(a []Hash) { |
| 64 | sort.Sort(HashSlice(a)) |
| 65 | } |
| 66 | |
| 67 | // HashSlice attaches the methods of sort.Interface to []Hash, sorting in |
| 68 | // increasing order. |
searching dependent graphs…