Implement heap.Interface on pointer receiver

PiperOrigin-RevId: 300467253
This commit is contained in:
Tamir Duberstein 2020-03-11 20:37:09 -07:00 committed by gVisor bot
parent 538e35f61b
commit ac05043525
1 changed files with 10 additions and 6 deletions

View File

@ -14,21 +14,25 @@
package tcp
import "container/heap"
type segmentHeap []*segment
var _ heap.Interface = (*segmentHeap)(nil)
// Len returns the length of h.
func (h segmentHeap) Len() int {
return len(h)
func (h *segmentHeap) Len() int {
return len(*h)
}
// Less determines whether the i-th element of h is less than the j-th element.
func (h segmentHeap) Less(i, j int) bool {
return h[i].sequenceNumber.LessThan(h[j].sequenceNumber)
func (h *segmentHeap) Less(i, j int) bool {
return (*h)[i].sequenceNumber.LessThan((*h)[j].sequenceNumber)
}
// Swap swaps the i-th and j-th elements of h.
func (h segmentHeap) Swap(i, j int) {
h[i], h[j] = h[j], h[i]
func (h *segmentHeap) Swap(i, j int) {
(*h)[i], (*h)[j] = (*h)[j], (*h)[i]
}
// Push adds x as the last element of h.