If I am creating my own class in Python, what function should I define so as to allow the use of the 'in' operator, e.g.
class MyClass(object):
...
m = MyClass()
if 54 in m:
...
|
If I am creating my own class in Python, what function should I define so as to allow the use of the 'in' operator, e.g.
|
||||
|
|
|
|
|||
|
|
|
A more complete answer is:
Here you would get True when asking if 54 was in m:
|
|||||||||||
|
|
You might also want to take a look at an infix operator override framework I was able to use to create a domain-specific language: |
|||
|
|