1.7 KiB
1.7 KiB
go-opt
Package opt implements an optional-type, for the Go programming language.
In other programming languages, an optional-type might be know as: a option-type, or a maybe-type.
Documention
Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-opt
Examples
Here is an example optional-type that can hold a string:
import "github.com/reiver/go-opt"
//
var op opt.Optional[string] // the default value is nothing.
// ...
if opt.Nothing[string]() == op {
fmt.Println("nothing")
}
// ...
op = opt.Something("Hello world! 👾")
// ...
switch op {
case op.Nothing[string]():
//@TODO
case op.Something("apple"):
//@TODO
case op.Something("banana"):
//@TODO
case op.Something("cherry"):
//@TODO
default:
//@TODO
}
// ...
value, found := op.Get()
if found {
fmt.Println("VALUE:", value)
} else {
fmt.Println("nothing")
}
Import
To import package opt use import
code like the following:
import "github.com/reiver/go-opt"
Installation
To install package opt do the following:
GOPROXY=direct go get github.com/reiver/go-opt
Author
Package opt was written by Charles Iliya Krempeaux
See Also
- https://github.com/reiver/go-ftr — future types and promise types
- https://github.com/reiver/go-lck — thread-safe locking types
- https://github.com/reiver/go-nul — nullable optional types
- https://github.com/reiver/go-opt — optional type
- https://github.com/reiver/go-reg — thread-safe registry
- https://github.com/reiver/go-tmp — expiring optional types