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