|
constexpr auto | remquo |
| Computes the floating-point remainder of the division operation x/y. Additionally, the sign and at least the three of the last bits of x/y will be determined, sufficient to determine the octant of the result within a period.
|
|
constexpr auto | frexp |
| Decomposes given floating point value into a normalized fraction and an integral power of two.
|
|
constexpr auto | modf |
| Decomposes given floating point value into integral and fractional parts, each having the same type and sign as the original value.
|
|