https://github.com/keep94/maybe
Provides optional values.
https://github.com/keep94/maybe
Last synced: 12 months ago
JSON representation
Provides optional values.
- Host: GitHub
- URL: https://github.com/keep94/maybe
- Owner: keep94
- License: bsd-3-clause
- Created: 2013-11-10T03:17:08.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2020-09-04T21:40:42.000Z (almost 6 years ago)
- Last Synced: 2025-06-05T11:11:36.162Z (about 1 year ago)
- Language: Go
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
maybe
=====
Provides optional values in go.
Representing optional values as pointers can create many small chunks on the
heap. This package represents optional values without heap allocations.
This API is stable. Newly added API that is not yet stable will be clearly
marked as draft API.
## Using
import "github.com/keep94/maybe"