Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func SortVersions ¶
Types ¶
type SemverCollection ¶
SemverCollection is a collection of Version instances and implements the sort interface. See the sort package for more details. https://golang.org/pkg/sort/
func (SemverCollection) Len ¶
func (c SemverCollection) Len() int
Len returns the length of a collection. The number of Version instances on the slice.
func (SemverCollection) Less ¶
func (c SemverCollection) Less(i, j int) bool
Less is needed for the sort interface to compare two Version objects on the slice. If checks if one is less than the other.
func (SemverCollection) Swap ¶
func (c SemverCollection) Swap(i, j int)
Swap is needed for the sort interface to replace the Version objects at two different positions in the slice.
Click to show internal directories.
Click to hide internal directories.