Rounded returns true if the Rounded flag is set.
()
| 79 | |
| 80 | // Rounded returns true if the Rounded flag is set. |
| 81 | func (r Condition) Rounded() bool { return r&Rounded != 0 } |
| 82 | |
| 83 | // DivisionUndefined returns true if the DivisionUndefined flag is set. |
| 84 | func (r Condition) DivisionUndefined() bool { return r&DivisionUndefined != 0 } |
no outgoing calls