! @brief returns x - y @pre x.e == y.e and x.f >= y.f */
| 178 | @pre x.e == y.e and x.f >= y.f |
| 179 | */ |
| 180 | static diyfp sub(const diyfp& x, const diyfp& y) noexcept |
| 181 | { |
| 182 | |
| 183 | return { x.f - y.f, x.e }; |
| 184 | } |
| 185 | |
| 186 | /*! |
| 187 | @brief returns x * y |
no outgoing calls
no test coverage detected