Replies: 2 comments 2 replies
-
FYI only. Something else in this space, though very different: domn1995/dunet. I don't see this as overlapping that (pure enum vs DU), but there's always something to be learned from similar libraries in the space. |
Beta Was this translation helpful? Give feedback.
1 reply
-
Hi Steve, I'm really enjoying Vogen and decided to give this lib a try too. One thing I noticed is that I have to updated all my
It would be nice if we can use the |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The main idea behind Intellenum is for a source generator to generate enums and the associated
Contains
,GetValues
. The other goal is for speed and memory allocations to closely match that of using enums directly.What features would you like to see?
What features would you not like to see? e.g. design decisions in similar libraries that haven't turned out so well.
Here's what's already there (and subject to change depending on this discussion)
class
orstruct
enums - if memory / GC is important, then this will be useful[Instance("Male", "M")]
Here's what I'm thinking might be useful:
Code will be generated, something like:
Beta Was this translation helpful? Give feedback.
All reactions