Ejemplo n.º 1
0
 def __ne__(self, other):
     return Boolean.Boolean(self.value != other.value)
Ejemplo n.º 2
0
 def __eq__(self, other):
     return Boolean.Boolean(self.value == other.value)
Ejemplo n.º 3
0
 def __gt__(self, other):
     return Boolean.Boolean(self.value > other.value)
Ejemplo n.º 4
0
 def __contains__(self, x):
     if type(x) == String:
         return Boolean.Boolean(x.value in self.value)
     else:
         return Boolean.Boolean(x in self.value)
Ejemplo n.º 5
0
 def __le__(self, other):
     return Boolean.Boolean(self.value <= other.value)