Created a section for Go implementations of "option types" / "maybe types".

Charles Iliya Krempeaux 2022-08-14 01:24:30 -07:00
parent e116fa478b
commit 7b682604af

@ -69,6 +69,7 @@ If you find a project in this list that is dead or broken, please either mark it
* [ZeroMQ](#zeromq)
* [Misc Networking](#misc-networking)
* [Operating System Interfaces](#operating-system-interfaces)
* [Option Types](#option-types)
* [Other Random Toys, Experiments and Example Code](#other-random-toys-experiments-and-example-code)
* [P2P and File Sharing](#p2p-and-file-sharing)
* [Programming](#programming)
@ -1456,6 +1457,10 @@ See also [[SQLDrivers page|SQLDrivers]].
* [inspect/os](https://github.com/square/inspect) - Metrics library for operating system measurements (Linux/MacOSX)
* [service](https://github.com/kardianos/service) - Service will install / un-install, start / stop, and run a program as a service (daemon) on Windows/Linux and OSX.
## Option Types
* [opt](https://github.com/reiver/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.
## Other Random Toys, Experiments and Example Code
* [goconc](http://code.google.com/p/goconc/) - A collection of useful concurrency idioms and functions for Go, compiled