def logical_or(self, other): """Return the new expression of computing logical or between self and a given operand. Args: other (Any): Given operand. Returns: :class:`~taichi.lang.expr.Expr`: The computing expression of logical or.""" _taichi_skip_traceback = 1 return ti.logical_or(self, other)
def logical_or(self, other): import taichi as ti return ti.logical_or(self, other)
def logical_or(self, other): import taichi as ti _taichi_skip_traceback = 1 return ti.logical_or(self, other)
def logical_or(self, other): _taichi_skip_traceback = 1 return ti.logical_or(self, other)