neo-go/pkg/core/uint32.go
Evgenii Stratonikov 884779e501 *: goimports
2019-12-17 14:51:28 +03:00

8 lines
291 B
Go

package core
// slice attaches the methods of Interface to []int, sorting in increasing order.
type slice []uint32
func (p slice) Len() int { return len(p) }
func (p slice) Less(i, j int) bool { return p[i] < p[j] }
func (p slice) Swap(i, j int) { p[i], p[j] = p[j], p[i] }