- Notifications
You must be signed in to change notification settings - Fork20
Type safe enums for Go without code generation or reflection
License
orsinium-labs/enum
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
[📄 docs ] [🐙 github ] [❤️ sponsor ]
Type safe enums for Go without code generation or reflection.
😎 Features:
- Type-safe, thanks to generics.
- No code generation.
- No reflection.
- Well-documented, with working examples for every function.
- Flexible, supports both static and runtime definitions.
- Zero-dependency.
go get github.com/orsinium-labs/enum
Define:
typeColor enum.Member[string]var (Red=Color{"red"}Green=Color{"green"}Blue=Color{"blue"}Colors=enum.New(Red,Green,Blue))
Parse a raw value (nil is returned for invalid value):
parsed:=Colors.Parse("red")
Compare enum members:
parsed==RedRed!=Green
Accept enum members as function arguments:
funcSetPixel(x,iint,cColor)
Loop over all enum members:
for_,color:=rangeColors.Members() {// ...}
Ensure that the enum member belongs to an enum (can be useful for defensive programming to ensure that the caller doesn't construct an enum member manually):
funcf(colorColor) {if!colors.Contains(color) {panic("invalid color") }// ...}
Define custom methods on enum members:
func (cColor)UnmarshalJSON(b []byte)error {returnnil}
Dynamically create enums to pass multiple members in a function:
funcSetPixel2(x,yint,colors enum.Enum[Color,string]) {ifcolors.Contains(Red) {// ... }}purple:=enum.New(Red,Blue)SetPixel2(0,0,purple)
Enum members can be any comparable type, not just strings:
typeColorValuestruct {UIstringDBint}typeColor enum.Member[ColorValue]var (Red=Color{ColorValue{"red",1}}Green=Color{ColorValue{"green",2}}Blue=Color{ColorValue{"blue",3}}Colors=enum.New(Red,Green,Blue))fmt.Println(Red.Value.UI)
If the enum has lots of members and new ones may be added over time, it's easy to forget to register all members in the enum. To prevent this, use enum.Builder to define an enum:
typeColor enum.Member[string]var (b=enum.NewBuilder[string,Color]()Red=b.Add(Color{"red"})Green=b.Add(Color{"green"})Blue=b.Add(Color{"blue"})Colors=b.Enum())
- What happens when enums are added in Go itself? I'll keep it alive until someone uses it but I expect the project popularity to quickly die out when there is native language support for enums. When you can mess with the compiler itself, you can do more. For example, this package can't provide an exhaustiveness check for switch statements using enums (maybe only by implementing a linter) but proper language-level enums would most likely have it.
- Is it reliable? Yes, pretty much. It has good tests but most importantly it's a small project with just a bit of the actual code that is hard to mess up.
- Is it maintained? The project is pretty much feature-complete, so there is nothing for me to commit and release daily. However, I accept contributions (see below).
- What if I found a bug? Fork the project, fix the bug, write some tests, and open a Pull Request. I usually merge and release any contributions within a day.
About
Type safe enums for Go without code generation or reflection
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Uh oh!
There was an error while loading.Please reload this page.