Ejemplo n.º 1
0
 def __eq__(self, other):
     return core.FExpr(self) == core.FExpr(other)
Ejemplo n.º 2
0
 def extend(self, other):
     return core.FExpr(self).extend(other)
Ejemplo n.º 3
0
 def __rrshift__(self, other):
     return core.FExpr(other) >> core.FExpr(self)
Ejemplo n.º 4
0
 def __neg__(self):
     """Unary minus: -expr."""
     return -core.FExpr(self)
Ejemplo n.º 5
0
 def len(self):
     return core.FExpr(self).len()
Ejemplo n.º 6
0
 def __gt__(self, other):
     return core.FExpr(self) > core.FExpr(other)
Ejemplo n.º 7
0
 def __ge__(self, other):
     return core.FExpr(self) >= core.FExpr(other)
Ejemplo n.º 8
0
 def __rfloordiv__(self, other):
     return core.FExpr(other) // core.FExpr(self)
Ejemplo n.º 9
0
 def __rmod__(self, other):
     return core.FExpr(other) % core.FExpr(self)
Ejemplo n.º 10
0
 def __rmul__(self, other):
     return core.FExpr(other) * core.FExpr(self)
Ejemplo n.º 11
0
 def __rtruediv__(self, other):
     return core.FExpr(other) / core.FExpr(self)
Ejemplo n.º 12
0
 def __rsub__(self, other):
     return core.FExpr(other) - core.FExpr(self)
Ejemplo n.º 13
0
 def __radd__(self, other):
     return core.FExpr(other) + core.FExpr(self)
Ejemplo n.º 14
0
 def remove(self, other):
     return core.FExpr(self).remove(other)
Ejemplo n.º 15
0
 def __ne__(self, other):
     return core.FExpr(self) != core.FExpr(other)
Ejemplo n.º 16
0
 def __rpow__(self, other):
     return core.FExpr(other)**core.FExpr(self)
Ejemplo n.º 17
0
 def __lt__(self, other):
     return core.FExpr(self) < core.FExpr(other)
Ejemplo n.º 18
0
 def __rand__(self, other):
     return core.FExpr(other) & core.FExpr(self)
Ejemplo n.º 19
0
 def __le__(self, other):
     return core.FExpr(self) <= core.FExpr(other)
Ejemplo n.º 20
0
 def __rxor__(self, other):
     return core.FExpr(other) ^ core.FExpr(self)
Ejemplo n.º 21
0
 def __invert__(self):
     """Unary inversion: ~expr."""
     return ~core.FExpr(self)
Ejemplo n.º 22
0
 def __ror__(self, other):
     return core.FExpr(other) | core.FExpr(self)
Ejemplo n.º 23
0
 def __pos__(self):
     """Unary plus (no-op)."""
     return +core.FExpr(self)
Ejemplo n.º 24
0
 def __rlshift__(self, other):
     return core.FExpr(other) << core.FExpr(self)
Ejemplo n.º 25
0
 def re_match(self, pattern, flags=None):
     return core.FExpr(self).re_match(pattern, flags=flags)
Ejemplo n.º 26
0
 def len(self):
     return core.FExpr(self).len()  # will warn