(rowId1, rowId2)
| 871 | } |
| 872 | collForEach(unsortedSlices, (sliceId) => { |
| 873 | const rowIdArraySorter = (rowId1, rowId2) => rowIdSorter( |
| 874 | mapGet(sortKeys, rowId1), |
| 875 | mapGet(sortKeys, rowId2), |
| 876 | sliceId |
| 877 | ); |
| 878 | const sliceArray = [...mapGet(index, sliceId)]; |
| 879 | if (!arrayIsSorted(sliceArray, rowIdArraySorter)) { |
| 880 | mapSet( |
nothing calls this directly
no test coverage detected
searching dependent graphs…