You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now enumer requires explicitly listing out the enum types. This can get tedious and error-prone over time.
One solution (e.g. as implemented by enumgen) relies on line comments. Instead of explicitly listing the enum types, you simply add a line comment to indicate a type should be treated as an enum, like so:
typeMyEnumint32//enums:enum
Is there appetite for such a feature?
The text was updated successfully, but these errors were encountered:
Right now
enumer
requires explicitly listing out the enum types. This can get tedious and error-prone over time.One solution (e.g. as implemented by enumgen) relies on line comments. Instead of explicitly listing the enum types, you simply add a line comment to indicate a type should be treated as an enum, like so:
Is there appetite for such a feature?
The text was updated successfully, but these errors were encountered: