Source code for titan_pylib.my_class.supports_add
1from typing import Protocol
2
3
[docs]
4class SupportsAdd(Protocol):
5
6 def __add__(self, other): ...
7 def __iadd__(self, other): ...
8 def __radd__(self, other): ...
1from typing import Protocol
2
3
[docs]
4class SupportsAdd(Protocol):
5
6 def __add__(self, other): ...
7 def __iadd__(self, other): ...
8 def __radd__(self, other): ...