()
| 612 | } |
| 613 | |
| 614 | isPositive(): boolean { |
| 615 | if (this._special === SpecialValue.NAN) return false |
| 616 | if (this._special === SpecialValue.POSITIVE_INFINITY) return true |
| 617 | if (this._special === SpecialValue.NEGATIVE_INFINITY) return false |
| 618 | if (this._mantissa === 0n) return !this._negativeZero |
| 619 | return this._mantissa > 0n |
| 620 | } |
| 621 | |
| 622 | isInteger(): boolean { |
| 623 | if (this._special !== SpecialValue.NONE) return false |
no outgoing calls
no test coverage detected