Lines Matching refs:float

35   def __or__(self, other: Union[int, float, 'Expression']) -> 'Operator':  argument
38 def __ror__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
41 def __xor__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
44 def __and__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
47 def __rand__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
50 def __lt__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
53 def __gt__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
56 def __add__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
59 def __radd__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
62 def __sub__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
65 def __rsub__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
68 def __mul__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
71 def __rmul__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
74 def __truediv__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
77 def __rtruediv__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
80 def __mod__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
84 def _Constify(val: Union[bool, int, float, Expression]) -> Expression: argument
88 if isinstance(val, (int, float)):
115 def __init__(self, operator: str, lhs: Union[int, float, Expression], argument
116 rhs: Union[int, float, Expression]):
211 def __init__(self, true_val: Union[int, float, Expression], argument
212 cond: Union[int, float, Expression],
213 false_val: Union[int, float, Expression]):
260 lhs: Union[int, float, Expression], argument
261 rhs: Optional[Union[int, float, Expression]] = None):
338 def __init__(self, value: Union[float, str]): argument
341 dec = ctx.create_decimal(repr(value) if isinstance(value, float) else value)
384 def min(lhs: Union[int, float, Expression], rhs: Union[int, float, argument
391 def max(lhs: Union[int, float, Expression], rhs: Union[int, float, argument
398 def d_ratio(lhs: Union[int, float, Expression], argument
399 rhs: Union[int, float, Expression]) -> Function: