Overflow returns true if the Overflow flag is set.
()
| 67 | |
| 68 | // Overflow returns true if the Overflow flag is set. |
| 69 | func (r Condition) Overflow() bool { return r&Overflow != 0 } |
| 70 | |
| 71 | // Underflow returns true if the Underflow flag is set. |
| 72 | func (r Condition) Underflow() bool { return r&Underflow != 0 } |
no outgoing calls