(j, k int)
| 1811 | } |
| 1812 | |
| 1813 | func (a *arraySortCtx) Less(j, k int) bool { |
| 1814 | return a.sortCompare(a.obj.sortGet(j), a.obj.sortGet(k)) < 0 |
| 1815 | } |
| 1816 | |
| 1817 | func (a *arraySortCtx) Swap(j, k int) { |
| 1818 | a.obj.swap(j, k) |
nothing calls this directly
no test coverage detected