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