Message228436
There are some properties of set comparison:
(a < b) == (a <= b and a != b)
(a <= b) == (a < b or a == b)
(a <= b and b <= a) == (a == b)
(a < b and b < a) == False
(a <= b) == (a - b == set())
if (a <= b and b <= c) then (a <= c)
(a <= b and a <= c) == (a <= (b & c))
(a <= c and b <= c) == ((a | b) <= c)
Is this true for Counter? |
|
Date |
User |
Action |
Args |
2014-10-04 07:57:16 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, rhettinger, pitrou, scoder, eric.smith, steven.daprano, r.david.murray, cool-RR, ethan.furman, Saimadhav.Heblikar, josh.r |
2014-10-04 07:57:16 | serhiy.storchaka | set | messageid: <1412409436.33.0.2695585317.issue22515@psf.upfronthosting.co.za> |
2014-10-04 07:57:16 | serhiy.storchaka | link | issue22515 messages |
2014-10-04 07:57:16 | serhiy.storchaka | create | |
|