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
Should add a general boolean function at the module level.
Also look into adding dunder methods to all elements.
element = element or element
... def __or__(self, other: Element)
element = element and element
... def __and__(self, other: Element)
element = element - element
... def __sub__(self, other: Element)
element = element ^ element
... def __xor__(self, other: Element)
No response
Enhancement
The text was updated successfully, but these errors were encountered:
MatthewMckee4
Successfully merging a pull request may close this issue.
Description
Should add a general boolean function at the module level.
Also look into adding dunder methods to all elements.
Union (OR)
element = element or element
Intersection (AND)
element = element and element
Difference (NOT)
element = element - element
XOR (Exclusive OR)
element = element ^ element
Additional information
No response
Type
Enhancement
The text was updated successfully, but these errors were encountered: