Lines Matching refs:_Decimal

6 _Decimal = Union[Decimal, int]
67 def __div__(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
68 def __rdiv__(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
70 def compare(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
78 def __add__(self, other: _Decimal) -> Decimal: ...
79 def __divmod__(self, other: _Decimal) -> Tuple[Decimal, Decimal]: ...
81 def __floordiv__(self, other: _Decimal) -> Decimal: ...
86 def __mod__(self, other: _Decimal) -> Decimal: ...
87 def __mul__(self, other: _Decimal) -> Decimal: ...
90 def __pow__(self, other: _Decimal, modulo: Optional[_Decimal] = ...) -> Decimal: ...
91 def __radd__(self, other: _Decimal) -> Decimal: ...
92 def __rdivmod__(self, other: _Decimal) -> Tuple[Decimal, Decimal]: ...
93 def __rfloordiv__(self, other: _Decimal) -> Decimal: ...
94 def __rmod__(self, other: _Decimal) -> Decimal: ...
95 def __rmul__(self, other: _Decimal) -> Decimal: ...
96 def __rsub__(self, other: _Decimal) -> Decimal: ...
97 def __rtruediv__(self, other: _Decimal) -> Decimal: ...
99 def __sub__(self, other: _Decimal) -> Decimal: ...
100 def __truediv__(self, other: _Decimal) -> Decimal: ...
103 def __add__(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
104 …def __divmod__(self, other: _Decimal, context: Optional[Context] = ...) -> Tuple[Decimal, Decimal]…
106 def __floordiv__(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
111 def __mod__(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
112 def __mul__(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
115 …def __pow__(self, other: _Decimal, modulo: Optional[_Decimal] = ..., context: Optional[Context] = …
116 def __radd__(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
117 …def __rdivmod__(self, other: _Decimal, context: Optional[Context] = ...) -> Tuple[Decimal, Decimal…
118 def __rfloordiv__(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
119 def __rmod__(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
120 def __rmul__(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
121 def __rsub__(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
122 def __rtruediv__(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
124 def __sub__(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
125 def __truediv__(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
126 def remainder_near(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
145 … def fma(self, other: _Decimal, third: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
146 def __rpow__(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
149 …def quantize(self, exp: _Decimal, rounding: Optional[str] = ..., context: Optional[Context] = ...)…
150 def same_quantum(self, other: _Decimal, context: Optional[Context] = ...) -> bool: ...
153 …self, exp: _Decimal, rounding: Optional[str] = ..., context: Optional[Context] = ..., watchexp: bo…
155 def same_quantum(self, other: _Decimal) -> bool: ...
160 def max(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
161 def min(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
167 def compare_signal(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
169 def compare_total(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
170 … def compare_total_mag(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
172 def compare_total(self, other: _Decimal) -> Decimal: ...
173 def compare_total_mag(self, other: _Decimal) -> Decimal: ...
177 def copy_sign(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
179 def copy_sign(self, other: _Decimal) -> Decimal: ...
194 def logical_and(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
196 def logical_or(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
197 def logical_xor(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
198 def max_mag(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
199 def min_mag(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
202 def next_toward(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
205 def rotate(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
206 def scaleb(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
207 def shift(self, other: _Decimal, context: Optional[Context] = ...) -> Decimal: ...
275 def abs(self, __x: _Decimal) -> Decimal: ...
276 def add(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
278 def compare(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
279 def compare_signal(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
280 def compare_total(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
281 def compare_total_mag(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
282 def copy_abs(self, __x: _Decimal) -> Decimal: ...
283 def copy_decimal(self, __x: _Decimal) -> Decimal: ...
284 def copy_negate(self, __x: _Decimal) -> Decimal: ...
285 def copy_sign(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
286 def divide(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
287 def divide_int(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
288 def divmod(self, __x: _Decimal, __y: _Decimal) -> Tuple[Decimal, Decimal]: ...
289 def exp(self, __x: _Decimal) -> Decimal: ...
290 def fma(self, __x: _Decimal, __y: _Decimal, __z: _Decimal) -> Decimal: ...
291 def is_canonical(self, __x: _Decimal) -> bool: ...
292 def is_finite(self, __x: _Decimal) -> bool: ...
293 def is_infinite(self, __x: _Decimal) -> bool: ...
294 def is_nan(self, __x: _Decimal) -> bool: ...
295 def is_normal(self, __x: _Decimal) -> bool: ...
296 def is_qnan(self, __x: _Decimal) -> bool: ...
297 def is_signed(self, __x: _Decimal) -> bool: ...
298 def is_snan(self, __x: _Decimal) -> bool: ...
299 def is_subnormal(self, __x: _Decimal) -> bool: ...
300 def is_zero(self, __x: _Decimal) -> bool: ...
301 def ln(self, __x: _Decimal) -> Decimal: ...
302 def log10(self, __x: _Decimal) -> Decimal: ...
303 def logb(self, __x: _Decimal) -> Decimal: ...
304 def logical_and(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
305 def logical_invert(self, __x: _Decimal) -> Decimal: ...
306 def logical_or(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
307 def logical_xor(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
308 def max(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
309 def max_mag(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
310 def min(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
311 def min_mag(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
312 def minus(self, __x: _Decimal) -> Decimal: ...
313 def multiply(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
314 def next_minus(self, __x: _Decimal) -> Decimal: ...
315 def next_plus(self, __x: _Decimal) -> Decimal: ...
316 def next_toward(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
317 def normalize(self, __x: _Decimal) -> Decimal: ...
318 def number_class(self, __x: _Decimal) -> str: ...
319 def plus(self, __x: _Decimal) -> Decimal: ...
320 def power(self, a: _Decimal, b: _Decimal, modulo: Optional[_Decimal] = ...) -> Decimal: ...
321 def quantize(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
323 def remainder(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
324 def remainder_near(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
325 def rotate(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
326 def same_quantum(self, __x: _Decimal, __y: _Decimal) -> bool: ...
327 def scaleb(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
328 def shift(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
329 def sqrt(self, __x: _Decimal) -> Decimal: ...
330 def subtract(self, __x: _Decimal, __y: _Decimal) -> Decimal: ...
331 def to_eng_string(self, __x: _Decimal) -> str: ...
332 def to_sci_string(self, __x: _Decimal) -> str: ...
333 def to_integral_exact(self, __x: _Decimal) -> Decimal: ...
334 def to_integral_value(self, __x: _Decimal) -> Decimal: ...
335 def to_integral(self, __x: _Decimal) -> Decimal: ...