(i, j int)
| 639 | |
| 640 | func (s SortedUint64Slice) Len() int { return len(s) } |
| 641 | func (s SortedUint64Slice) Less(i, j int) bool { return s[i] < s[j] } |
| 642 | func (s SortedUint64Slice) Swap(i, j int) { s[i], s[j] = s[j], s[i] } |
| 643 | |
| 644 | // Sort is a convenience method. |
no outgoing calls