diff --git a/README.md b/README.md index 8b1e9c4f..9b2b4cea 100644 --- a/README.md +++ b/README.md @@ -82,6 +82,7 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a - [Maps](#maps) - [Miscellaneous Data Structures and Algorithms](#miscellaneous-data-structures-and-algorithms) - [Nullable Types](#nullable-types) + - [Enum](#enum) - [Queues](#queues) - [Sets](#sets) - [Text Analysis](#text-analysis) @@ -588,6 +589,11 @@ additional ordered map implementations. - [null](https://github.com/emvi/null) - Nullable Go types that can be marshalled/unmarshalled to/from JSON. - [typ](https://github.com/gurukami/typ) - Null Types, Safe primitive type conversion and fetching value from complex structures. + +### Enum + +- [goenum](https://github.com/lvyahui8/goenum) - A common enumeration struct based on generics and reflection that allows you to quickly define enumerations and use a set of useful default methods. + ### Queues - [deque](https://github.com/edwingeng/deque) - A highly optimized double-ended queue.