An open API service indexing awesome lists of open source software.

https://github.com/keep94/maybe

Provides optional values.
https://github.com/keep94/maybe

Last synced: 12 months ago
JSON representation

Provides optional values.

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"