Subnormal returns true if the Subnormal flag is set.
()
| 76 | |
| 77 | // Subnormal returns true if the Subnormal flag is set. |
| 78 | func (r Condition) Subnormal() bool { return r&Subnormal != 0 } |
| 79 | |
| 80 | // Rounded returns true if the Rounded flag is set. |
| 81 | func (r Condition) Rounded() bool { return r&Rounded != 0 } |