Lines Matching defs:int

35   def __or__(self, other: Union[int, float, 'Expression']) -> 'Operator':
38 def __ror__(self, other: Union[int, float, 'Expression']) -> 'Operator':
41 def __xor__(self, other: Union[int, float, 'Expression']) -> 'Operator':
44 def __and__(self, other: Union[int, float, 'Expression']) -> 'Operator':
47 def __lt__(self, other: Union[int, float, 'Expression']) -> 'Operator':
50 def __gt__(self, other: Union[int, float, 'Expression']) -> 'Operator':
53 def __add__(self, other: Union[int, float, 'Expression']) -> 'Operator':
56 def __radd__(self, other: Union[int, float, 'Expression']) -> 'Operator':
59 def __sub__(self, other: Union[int, float, 'Expression']) -> 'Operator':
62 def __rsub__(self, other: Union[int, float, 'Expression']) -> 'Operator':
65 def __mul__(self, other: Union[int, float, 'Expression']) -> 'Operator':
68 def __rmul__(self, other: Union[int, float, 'Expression']) -> 'Operator':
71 def __truediv__(self, other: Union[int, float, 'Expression']) -> 'Operator':
74 def __rtruediv__(self, other: Union[int, float, 'Expression']) -> 'Operator':
77 def __mod__(self, other: Union[int, float, 'Expression']) -> 'Operator':
81 def _Constify(val: Union[bool, int, float, Expression]) -> Expression: argument
109 def __init__(self, operator: str, lhs: Union[int, float, Expression],
110 rhs: Union[int, float, Expression]):
205 def __init__(self, true_val: Union[int, float, Expression],
206 cond: Union[int, float, Expression],
207 false_val: Union[int, float, Expression]):
254 lhs: Union[int, float, Expression],
255 rhs: Optional[Union[int, float, Expression]] = None):
378 def min(lhs: Union[int, float, Expression], rhs: Union[int, float,
385 def max(lhs: Union[int, float, Expression], rhs: Union[int, float,
392 def d_ratio(lhs: Union[int, float, Expression],
393 rhs: Union[int, float, Expression]) -> Function: