menu: menu,
by: by, // The Sort method's receiver is the function (closure) that defines the sort order.
}
- sort.Sort(ms)
+ sort.Stable(ms)
}
var DefaultMenuEntrySort = func(m1, m2 *MenuEntry) bool {
pages: pages,
by: by, // The Sort method's receiver is the function (closure) that defines the sort order.
}
- sort.Sort(ps)
+ sort.Stable(ps)
}
var DefaultPageSort = func(p1, p2 *Page) bool {
taxonomy: taxonomy,
by: by, // The Sort method's receiver is the function (closure) that defines the sort order.
}
- sort.Sort(ps)
+ sort.Stable(ps)
}
// Len is part of sort.Interface.
func (p WeightedPages) Len() int { return len(p) }
func (p WeightedPages) Swap(i, j int) { p[i], p[j] = p[j], p[i] }
-func (p WeightedPages) Sort() { sort.Sort(p) }
+func (p WeightedPages) Sort() { sort.Stable(p) }
func (p WeightedPages) Count() int { return len(p) }
func (p WeightedPages) Less(i, j int) bool {
if p[i].Weight == p[j].Weight {