(i, j int)
| 1228 | |
| 1229 | func (s stateEntrySorter) Len() int { return len(s) } |
| 1230 | func (s stateEntrySorter) Less(i, j int) bool { return s[i].LessThan(s[j]) } |
| 1231 | func (s stateEntrySorter) Swap(i, j int) { s[i], s[j] = s[j], s[i] } |
| 1232 | |
| 1233 | type stateBlockNIDListMap []types.StateBlockNIDList |