SystemOverflow returns true if the SystemOverflow flag is set.
()
| 61 | |
| 62 | // SystemOverflow returns true if the SystemOverflow flag is set. |
| 63 | func (r Condition) SystemOverflow() bool { return r&SystemOverflow != 0 } |
| 64 | |
| 65 | // SystemUnderflow returns true if the SystemUnderflow flag is set. |
| 66 | func (r Condition) SystemUnderflow() bool { return r&SystemUnderflow != 0 } |