Lines Matching refs:total_ordering
13 'total_ordering', 'cache', 'cmp_to_key', 'lru_cache', 'reduce',
81 ### total_ordering class decorator
90 'Return a > b. Computed by @total_ordering from (not a < b) and (a != b).'
97 'Return a <= b. Computed by @total_ordering from (a < b) or (a == b).'
104 'Return a >= b. Computed by @total_ordering from (not a < b).'
111 'Return a >= b. Computed by @total_ordering from (not a <= b) or (a == b).'
118 'Return a < b. Computed by @total_ordering from (a <= b) and (a != b).'
125 'Return a > b. Computed by @total_ordering from (not a <= b).'
132 'Return a < b. Computed by @total_ordering from (not a > b) and (a != b).'
139 'Return a >= b. Computed by @total_ordering from (a > b) or (a == b).'
146 'Return a <= b. Computed by @total_ordering from (not a > b).'
153 'Return a <= b. Computed by @total_ordering from (not a >= b) or (a == b).'
160 'Return a > b. Computed by @total_ordering from (a >= b) and (a != b).'
167 'Return a < b. Computed by @total_ordering from (not a >= b).'
188 def total_ordering(cls):