type go.etcd.io/bbolt.pages

5 uses

	go.etcd.io/bbolt (current package)
		page.go#L96: type pages []*page
		page.go#L98: func (s pages) Len() int           { return len(s) }
		page.go#L99: func (s pages) Swap(i, j int)      { s[i], s[j] = s[j], s[i] }
		page.go#L100: func (s pages) Less(i, j int) bool { return s[i].id < s[j].id }
		tx.go#L516: 	pages := make(pages, 0, len(tx.pages))