Hashicorp go-version: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 8: Line 8:
<syntaxhighlight lang='bash'>
<syntaxhighlight lang='bash'>
go get github.com/hashicorp/go-version
go get github.com/hashicorp/go-version
</syntaxhighlight>
=Programming Model=
<syntaxhighlight lang='go'>
v1, err := version.NewVersion("1.2")
v2, err := version.NewVersion("1.5+metadata")
// Comparison example. There is also GreaterThan, Equal, and just
// a simple Compare that returns an int allowing easy >=, <=, etc.
if v1.LessThan(v2) {
    fmt.Printf("%s is less than %s", v1, v2)
}
</syntaxhighlight>
</syntaxhighlight>

Revision as of 16:47, 18 March 2024

External

Internal

Overview

Installation

go get github.com/hashicorp/go-version

Programming Model

v1, err := version.NewVersion("1.2")
v2, err := version.NewVersion("1.5+metadata")

// Comparison example. There is also GreaterThan, Equal, and just
// a simple Compare that returns an int allowing easy >=, <=, etc.
if v1.LessThan(v2) {
    fmt.Printf("%s is less than %s", v1, v2)
}