There are more dunder methods that are / might be relevant: Rich relations: - `__eq__ ` - `__ne__` - `__lt__` - `__le__` - `__gt__` - `__ge__ ` Binary operations: - `__add__` (where L+L = L) - `__sub__` (where L-L = L) + All the reflected operators. Thoughts?
There are more dunder methods that are / might be relevant:
Rich relations:
__eq____ne____lt____le____gt____ge__Binary operations:
__add__(where L+L = L)__sub__(where L-L = L)Thoughts?