Searched refs:nidSorter (Results 1 – 1 of 1) sorted by relevance
526 type nidSorter struct { struct532 func (a nidSorter) obj(i int) object { return a.objs.byNID[a.nids[i]] } argument533 func (a nidSorter) Len() int { return len(a.nids) } argument534 func (a nidSorter) Swap(i, j int) { a.nids[i], a.nids[j] = a.nids[j], a.nids[i] } argument535 func (a nidSorter) Less(i, j int) bool { return a.cmp(a.obj(i), a.obj(j)) } argument538 sort.Sort(&nidSorter{nids, objs, cmp})