mirror of
https://github.com/btcsuite/btcd.git
synced 2025-02-23 22:47:01 +01:00
27 lines
826 B
Go
27 lines
826 B
Go
// Copyright (c) 2013-2017 The btcsuite developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package blockchain
|
|
|
|
// timeSorter implements sort.Interface to allow a slice of timestamps to
|
|
// be sorted.
|
|
type timeSorter []int64
|
|
|
|
// Len returns the number of timestamps in the slice. It is part of the
|
|
// sort.Interface implementation.
|
|
func (s timeSorter) Len() int {
|
|
return len(s)
|
|
}
|
|
|
|
// Swap swaps the timestamps at the passed indices. It is part of the
|
|
// sort.Interface implementation.
|
|
func (s timeSorter) Swap(i, j int) {
|
|
s[i], s[j] = s[j], s[i]
|
|
}
|
|
|
|
// Less returns whether the timestamp with index i should sort before the
|
|
// timestamp with index j. It is part of the sort.Interface implementation.
|
|
func (s timeSorter) Less(i, j int) bool {
|
|
return s[i] < s[j]
|
|
}
|