Beispiel #1
0
 def test_reduce_cond(self):
     a = [1, 2, 3, 4]
     b = [1, 2, 3, 4]
     c = [2, 2, 3, 4]
     d = [1, 3, 3, 4]
     e = [1, 2, 4, 4]
     f = [1, 2, 3, 5]
     
     self.assertFalse(reduce_cond(lambda _, x: x[0] < x[1], lambda r, x: not r and x[0] == x[1], zip(a, b), False))
     self.assertTrue(reduce_cond(lambda _, x: x[0] < x[1], lambda r, x: not r and x[0] == x[1], zip(a, c), False))
     self.assertTrue(reduce_cond(lambda _, x: x[0] < x[1], lambda r, x: not r and x[0] == x[1], zip(a, d), False))
     self.assertTrue(reduce_cond(lambda _, x: x[0] < x[1], lambda r, x: not r and x[0] == x[1], zip(a, e), False))
     self.assertTrue(reduce_cond(lambda _, x: x[0] < x[1], lambda r, x: not r and x[0] == x[1], zip(a, f), False))
Beispiel #2
0
 def __ge__(self, other):
     return isinstance(other, BalinesePawukonDate) and reduce_cond(lambda _, (x, y): x >= y, lambda r, (x, y): not r and x == y, zip(self.to_tuple(), other.to_tuple()), False)
Beispiel #3
0
 def __gt__(self, other):
     return isinstance(other, BahaiDate) and reduce_cond(lambda _, (x, y): x > y, lambda r, (x, y): not r and x == y, zip(self.to_tuple(), other.to_tuple()), False)
Beispiel #4
0
 def __ge__(self, other):
     return isinstance(other, OldHinduLunarDate) and reduce_cond(lambda _, (x, y): x >= y, lambda r, (x, y): not r and x == y, zip(self.to_tuple(), other.to_tuple()), False)
 def __ge__(self, other):
     return isinstance(other, YearMonthDay) and reduce_cond(lambda _, (x, y): x >= y, lambda r, (x, y): not r and x == y, zip(self.to_tuple(), other.to_tuple()), False)