Lines Matching refs:Int
48 class Int(co.namedtuple('Int', 'x')): class
51 if isinstance(x, Int):
156 none = Int.none
157 table = Int.table
158 diff_none = Int.diff_none
159 diff_table = Int.diff_table
160 diff_diff = Int.diff_diff
161 ratio = Int.ratio
162 __add__ = Int.__add__
163 __sub__ = Int.__sub__
164 __mul__ = Int.__mul__
176 return super().__new__(cls, Int(a), Int(b))
198 new_a, new_b = self if self else (Int(0), Int(0))
199 old_a, old_b = other if other else (Int(0), Int(0))
205 new_a, new_b = self if self else (Int(0), Int(0))
206 old_a, old_b = other if other else (Int(0), Int(0))
236 ('int', Int),