(i, j int)
| 840 | |
| 841 | func (s SizedByRef) Len() int { return len(s) } |
| 842 | func (s SizedByRef) Less(i, j int) bool { return s[i].Less(s[j]) } |
| 843 | func (s SizedByRef) Swap(i, j int) { s[i], s[j] = s[j], s[i] } |
| 844 | |
| 845 | // TypeAlphabet returns the valid characters in the given blobref type. |