コード例 #1
0
ファイル: common_ops.py プロジェクト: quadpixels/taichi
 def __rxor__(self, other):
     _taichi_skip_traceback = 1
     return ti.bit_xor(other, self)
コード例 #2
0
ファイル: common_ops.py プロジェクト: yueying/taichi
 def __xor__(self, other):
     import taichi as ti
     return ti.bit_xor(self, other)
コード例 #3
0
 def __xor__(self, other):
     import taichi as ti
     _taichi_skip_traceback = 1
     return ti.bit_xor(self, other)