etiny returns the smallest value an Exponent can contain.
()
| 89 | |
| 90 | // etiny returns the smallest value an Exponent can contain. |
| 91 | func (c *Context) etiny() int32 { |
| 92 | return c.MinExponent - int32(c.Precision) + 1 |
| 93 | } |
| 94 | |
| 95 | // shouldSetAsNaN determines whether setAsNaN should be called, given |
| 96 | // the provided values, where x is required and y is optional. It is |
no outgoing calls
no test coverage detected