Lines Matching defs:logical_or
3414 def logical_or(self, other, context=None):
4798 def logical_or(self, a, b):
4803 >>> ExtendedContext.logical_or(Decimal('0'), Decimal('0'))
4805 >>> ExtendedContext.logical_or(Decimal('0'), Decimal('1'))
4807 >>> ExtendedContext.logical_or(Decimal('1'), Decimal('0'))
4809 >>> ExtendedContext.logical_or(Decimal('1'), Decimal('1'))
4811 >>> ExtendedContext.logical_or(Decimal('1100'), Decimal('1010'))
4813 >>> ExtendedContext.logical_or(Decimal('1110'), Decimal('10'))
4815 >>> ExtendedContext.logical_or(110, 1101)
4817 >>> ExtendedContext.logical_or(Decimal(110), 1101)
4819 >>> ExtendedContext.logical_or(110, Decimal(1101))
4823 return a.logical_or(b, context=self)