We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instead of:
class EnumItem(Enum): THING1 = 0 THING2 = 1
class Bag(Layout): def __init__(self): super().__init__([ ("thing", Signal.enum(EnumItem).shape()) ])
Maybe:
class Bag(Layout): def __init__(self): super().__init__([ ("thing", EnumItem) ])
With the understanding that fanning an element in requires the "inactive" outputs to be zero. This can inform the design of the enumerated class:
class EnumItem(Enum): NONE = 0 THING1 =1 THING2 = 2
The text was updated successfully, but these errors were encountered:
Reasonable.
Sorry, something went wrong.
4c582ef
No branches or pull requests
Instead of:
Maybe:
With the understanding that fanning an element in requires the "inactive" outputs to be zero. This can inform the design of the enumerated class:
The text was updated successfully, but these errors were encountered: