summaryrefslogtreecommitdiffstats
path: root/src/result_others.go
blob: e3363a8e6564c11440b64f87febbf5f85bc09597 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// +build !386,!amd64

package fzf

func compareRanks(irank Result, jrank Result, tac bool) bool {
	for idx := 3; idx >= 0; idx-- {
		left := irank.points[idx]
		right := jrank.points[idx]
		if left < right {
			return true
		} else if left > right {
			return false
		}
	}
	return (irank.item.Index() <= jrank.item.Index()) != tac
}