Esempio n. 1
0
 def __invert__(self):
     if _dtype_is_float(self):
         raise RuntimeError("Cannot use ~ operator on float type Expr.")
     return _ffi_api.Call(self.dtype, "bitwise_not", [self],
                          Call.PureIntrinsic, None, 0)
Esempio n. 2
0
 def __invert__(self):
     return _ffi_api.Call(self.dtype, "bitwise_not", [self],
                          Call.PureIntrinsic, None, 0)