I want to overload the * operator in python. In C++, you can overload the dereference operator, so that you can create a class with a custom way to respond to *alpha
.
Part of this question is that I don't know exactly, and I mean EXACTLY, what the * operator (unpacking operator as I call it) does.
So how can I overload it, or emulate the overloading of it.
Eventually I want to be able to do: *alpha
with a custom response and return value.
EDIT:
I found the solution thanks to Joe Kington's comment. As *alpha
unpacks according to __iter__
, so I defined a simple class that can be inherited from to allow this.
BTW, the reason I want to be able to do this is because I wanted a pretty interface.
class Deref:
def __deref__(self):
pass
def __iter__(self):
yield self.__deref__()
class DerefTest(Deref):
def __deref__(self):
return '123cat'
if __name__ == '__main__':
print(*DerefTest()) # prints '123cat'
Eventually I just settled on using another unary operator because the implementation I gave doesn't work in all cases, so I am dissapoint.