enumer
enumer copied to clipboard
Add ability to parse nil value as empty string
Given the following:
type ColorType int
const (
RED ColorType = iota
GREEN
BLUE
NIL
)
I would like to set the value of NIL to be an empty string. Is this possible?