Underflow returns true if the Underflow flag is set.
()
| 70 | |
| 71 | // Underflow returns true if the Underflow flag is set. |
| 72 | func (r Condition) Underflow() bool { return r&Underflow != 0 } |
| 73 | |
| 74 | // Inexact returns true if the Inexact flag is set. |
| 75 | func (r Condition) Inexact() bool { return r&Inexact != 0 } |