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