(i, j int)
| 96 | func (s BookNavs) Len() int { return len(s) } |
| 97 | |
| 98 | func (s BookNavs) Swap(i, j int) { s[i], s[j] = s[j], s[i] } |
| 99 | |
| 100 | func (s BookNavs) Less(i, j int) bool { return s[i].Sort < s[j].Sort } |
| 101 |
nothing calls this directly
no outgoing calls
no test coverage detected