diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 16 |
1 files changed, 12 insertions, 4 deletions
@@ -5,9 +5,17 @@ SPDX-License-Identifier: Apache-2.0 # gg (Generic Generics) -A Go library for the generic types that should be in the standard library, but aren't. -Currently, this includes [Option](./option/). -I may additional types like `Result`, `Either` or `Pair` if: +My personal extension of the standard library, mostly containing foundational generic types. + +## List of packages + +- [jsonmatch](./jsonmatch/): matching of encoded JSON payloads against fixed assertions +- [option](./option/): an Option type with strong isolation +- [options](./options/): additional functions for type Option + +## Future developments + +I may add additional types (e.g. `Result`, `Either` or `Pair`) if: - there is a compelling usecase for myself, and -- an API can be built that is ergonomic in practice (this is the biggest reason why `Result` might never happen). +- I find an API that is ergonomic in practice (this is the biggest reason why `Result` might never happen). |
