remainder(x, y) Returns the remainder from integer division. The sign of the result, if non-zero, is the same as that of the original dividend.
normalize(x) Reduces x to its simplest form.
next_plus(x) Returns the smallest representable number larger than x.
next_toward(x, y) Returns the number closest to x, in direction towards y.
plus(x) Plus corresponds to the unary prefix plus operator in Python. This operation applies the context precision and rounding, so it is not an identity operation.
number_class(x) Returns an indication of the class of x.
min_mag(x, y) Compares the values numerically with their sign ignored.
multiply(x, y) Return the product of x and y.
next_minus(x) Returns the largest representable number smaller than x.
minus(x) Minus corresponds to the unary prefix minus operator in Python.
Page 521 of 663