Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func IsValidVersion ¶
IsValidVersion returns true iff the input is a valid version name.
Types ¶
type Comparison ¶
type Comparison int
const ( Lesser Comparison = -1 Equal Comparison = 0 Greater Comparison = 1 )
type Version ¶
type Version struct {
// contains filtered or unexported fields
}
func NewVersion ¶
NewVersion builds a Version from a version string, eg "v1alpha2"
func NewVersionOrPanic ¶
NewVersionOrPanic is the same as NewVersion, but panics if passed an invalid version name.
func (Version) Compare ¶
func (v Version) Compare(other Version) Comparison
Compare return Lesser if v < other (ie other is more recent), Equal if v == other, and Greater if v > other (ie v is more recent)
Click to show internal directories.
Click to hide internal directories.