enum:用于golang的枚举生成器

时间:2024-05-29 17:05:26
【文件属性】:

文件名称:enum:用于golang的枚举生成器

文件大小:4KB

文件格式:ZIP

更新时间:2024-05-29 17:05:26

go golang enum enumeration Go

介绍 枚举是生成枚举结构的工具 安装 go install github.com/Natata/enum 如何使用 写枚举文件 文件格式 type: [int|string] name: [package name] list: [enum element] = [value] 文件名无关紧要 产生enum.go enum -fp=exam.enum 例子 整数枚举 type: int name: direction list: West = 0 east = 1 North = 2 South = 3 结果: package direction // Alias hide the real type of the enum // and users can use it to define the var


【文件预览】:
enum-master
----main.go(4KB)
----example3.enum(107B)
----LICENSE(1KB)
----README.md(2KB)
----example2.enum(95B)
----example1.enum(87B)

网友评论