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.
Go to file
Charles Iliya Krempeaux e86446ff5b removed the pre-generics implementation of an optional-type / option-type / maybe-type for the Go programming language 2022-08-08 10:05:56 -07:00
LICENSE change contact info in LICENSE 2022-08-08 08:57:37 -07:00
README.md opt.Optional[T] 2022-08-08 10:01:41 -07:00
go.mod opt.Optional[T] 2022-08-08 10:01:41 -07:00
go.sum opt.Optional[T] 2022-08-08 10:01:41 -07:00
optional.go opt.Optional[T] 2022-08-08 10:01:41 -07:00
optional_get_test.go opt.Optional[T] 2022-08-08 10:01:41 -07:00
optional_gostring_test.go opt.Optional[T] 2022-08-08 10:01:41 -07:00
optional_whennothing_test.go opt.Optional[T] 2022-08-08 10:01:41 -07:00
optional_whensomething_test.go opt.Optional[T] 2022-08-08 10:01:41 -07:00

README.md

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

GoDoc